Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-24 | [#184] small refactoring reset password | Maksim | |
2019-06-20 | Rename Pleroma.Mix.Tasks.Common -> Mix.Pleroma and import it's functions | rinpatch | |
instead of aliasing This seems to be the convention for functions that can be reused between different mix tasks in all Elixir projects I've seen and it gets rid on an error message when someone runs mix pleroma.common Also in this commit by accident: - Move benchmark task under a proper namespace - Insert a space after the prompt | |||
2019-06-19 | Apply suggestion to lib/mix/tasks/pleroma/user.ex | Ivan Tashkinov | |
2019-06-19 | User sign out mix task. | Ivan Tashkinov | |
2019-06-08 | Make mix tasks work in a release | rinpatch | |
2019-05-16 | Feature/896 toggling confirmation | Alexander Strizhakov | |
2019-05-13 | differences_in_mastoapi_responses.md: fullname & bio are optionnal | Alexander Strizhakov | |
[ci skip] | |||
2019-05-06 | Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into ↵ | Alexander Strizhakov | |
feature/845-improve-status-deletion | |||
2019-05-01 | test fixes | Alex S | |
2019-04-22 | Use `User.get_cached*` everywhere | Egor | |
2019-04-08 | renaming expire_at -> expires_at | Alex S | |
keyword style change | |||
2019-04-06 | little channges | Alex S | |
2019-04-06 | token -> invite renaming | Alex S | |
2019-04-06 | generating tokens with mix | Alex S | |
2019-04-02 | Merge branch 'remove-user-activities' into 'develop' | lambda | |
[#757] Add mix task to delete user's activities See merge request pleroma/pleroma!1008 | |||
2019-04-02 | change `Repo.get(User, id)` => `User.get_by_id(id)` | Egor Kislitsyn | |
2019-04-02 | add `user delete_activities` mix task | Egor Kislitsyn | |
2019-04-02 | Merge remote-tracking branch 'pleroma/develop' into remove-user-activities | Egor Kislitsyn | |
2019-03-13 | [Credo] fix Credo.Check.Readability.AliasOrder | Haelwenn (lanodan) Monnier | |
2019-03-12 | fix wording | Egor Kislitsyn | |
2019-03-12 | add `mix pleroma.user delete_activities NICKNAME` task | Egor Kislitsyn | |
2019-02-09 | de-group alias/es | Haelwenn (lanodan) Monnier | |
2019-02-09 | Make credo happy | Haelwenn (lanodan) Monnier | |
2019-02-04 | mix: add user tag/untag task | William Pitcock | |
2019-01-04 | fix 486: Add option --assume-yes to allow it to work non-interactive | spctrl | |
2018-12-23 | mix tasks: add legal boilerplate | William Pitcock | |
2018-12-18 | [#114] Added email confirmation resend action. Added tests | Ivan Tashkinov | |
for registration, authentication, email confirmation, confirmation resending. Made admin methods create confirmed users. | |||
2018-12-16 | Use bindings dbuser and dbname in sample_psql.eex | link0ff | |
2018-12-12 | Allow to set both admin and moderator at the same time in mix task User | link0ff | |
2018-12-12 | Fix toggle_activated in mix task User | link0ff | |
2018-12-09 | fix compile warnings | Maksim Pechnikov | |
2018-12-07 | Oops | rinpatch | |
2018-12-07 | Add mix pleroma.user unsubscribe to mix doc | rinpatch | |
2018-12-06 | Remove unused vars from user.ex | Rin Toshaka | |
2018-12-06 | Refactor common functions to common.ex | Rin Toshaka | |
2018-12-05 | formating | Rin Toshaka | |
2018-12-05 | Everything should use Mix.Task.Run | Rin Toshaka | |
2018-12-05 | Switch from User.info_changeset because it is deprecated | Rin Toshaka | |
2018-12-04 | change new to gen in instance.ex . Refactor user.ex | Rin Toshaka | |
2018-12-02 | F O R M A T I N G | Rin Toshaka | |
2018-12-02 | Move generate_invite to user.ex | Rin Toshaka | |
2018-12-02 | Move unsubscribe user task to pleroma/user.ex. Delete unsubscribe_user.ex. ↵ | Rin Toshaka | |
Fix pleroma.user toggle_activated to work not only on local users. | |||
2018-12-02 | Lint fix | Rin Toshaka | |
2018-12-02 | Add admin option to pleroma.user new. Add user existence checking to ↵ | Rin Toshaka | |
toggle_activated | |||
2018-12-01 | Move set_admin task to lib/mix/tasks/pleroma/user.ex | rinpatch | |
2018-12-01 | Fix toggle_deactivated to reactivate a deactivated user | rinpatch | |
2018-08-23 | Refactor Mix tasks | Jorty | |
1. Move Mix tasks into a `pleroma` namespace, to avoid collisions with dependent packages. 2. Rename and condense tasks into two `pleroma.user` and `pleroma.gen.instance` tasks for consistency with Hex and Phoenix. 3. Add additional functionality to the tasks to make them more user-friendly. Arguments with sensible defaults were demoted to flags and in the interactive `generate_config` (renamed to `pleroma.gen.instance`), flags were added to allow non-interactive use, though interactive use remains the primary interface. That task also now prompts the user for database parameters. 4. Documentation has been added to both tasks such that `mix help` now shows useful information. 5. Finally, use of IO.puts in tasks has been replaced with Mix.shell() equivalents to make the behavior more consistent with Mix tasks in other packages, and such that variables like MIX_QUIET are respected. The only exception is in `mix pleroma.user reset_password`, wherein the URL must always be printed regardless of the value of MIX_QUIET since that's its entire purpose. |