Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove default scope from todosremove-default-scope-from-todos | Sean McGivern | 2018-03-05 | 1 | -6/+8 |
| | | | | This was causing todo priority sorting to fail. | ||||
* | Set todos#author_id to NOT NULL.32282-add-foreign-keys-to-todos | Andreas Brandl | 2018-02-05 | 1 | -0/+1 |
| | |||||
* | Enable Style/DotPosition Rubocop :cop: | Grzegorz Bizon | 2017-06-21 | 1 | -3/+3 |
| | |||||
* | Added Cop to blacklist polymorphic associations | Yorick Peterse | 2017-06-07 | 1 | -1/+1 |
| | | | | | | | | One should really use a separate table instead of using polymorphic associations. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11168 for more information. | ||||
* | Improve text on todo list when the todo action comes from yourself | Jacopo | 2017-04-28 | 1 | -0/+12 |
| | | | | | | | | | | | | | | Improved todo message when an issue is assigned to yourself. - The new message when an user assign to himself an issue or a mr is: "You assigned issue xx to yourself" - The new message when an user adds a todo to himself is: "You added a todo for issue xx" - The new message when and user mention himself is: "You mentioned yourself on issue xx" - The new message when an user directly address himself is: "You directly addressed yourself on issue xx" - The new message when an user mark himself as an approver is: "You set yourself as an approver for merge request xx" | ||||
* | Allow sorting by due date and label priority | Sean McGivern | 2017-03-15 | 1 | -1/+7 |
| | |||||
* | Revert "Prefer leading style for Style/DotPosition" | Douwe Maan | 2017-02-23 | 1 | -3/+3 |
| | | | | This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b. | ||||
* | Prefer leading style for Style/DotPosition | Douwe Maan | 2017-02-23 | 1 | -3/+3 |
| | |||||
* | Enable Style/MutableConstant | Douwe Maan | 2017-02-23 | 1 | -1/+1 |
| | |||||
* | Create directly_addressed Todos when mentioned in beginning of a line | Ershad Kunnakkadan | 2017-02-08 | 1 | -7/+9 |
| | |||||
* | Present TODO's list without grouping by project | Oswaldo Ferreira | 2017-01-27 | 1 | -2/+2 |
| | |||||
* | Notify the user who set auto-merge when merge conflict occurs | twonegatives | 2017-01-14 | 1 | -1/+7 |
| | |||||
* | Fix and improve `Sortable.highest_label_priority`23928-sortable-highest_label_priority-is-bugged | Alejandro RodrÃguez | 2016-10-27 | 1 | -1/+1 |
| | |||||
* | Use keyword arguments on Sortable#highest_label_priority | Douglas Barbosa Alexandre | 2016-10-19 | 1 | -1/+7 |
| | |||||
* | Fix sorting by label priorities | Douglas Barbosa Alexandre | 2016-10-19 | 1 | -1/+1 |
| | |||||
* | Todos sorting dropdownissue_18135 | Felipe Artur | 2016-08-19 | 1 | -0/+19 |
| | |||||
* | Add approval required todosapproval-required-todo | Sean McGivern | 2016-07-12 | 1 | -5/+7 |
| | |||||
* | Don't garbage collect commits that have related DB records like comments | Douwe Maan | 2016-07-04 | 1 | -0/+8 |
| | |||||
* | Expose action_name | Robert Schilling | 2016-07-01 | 1 | -0/+11 |
| | |||||
* | Move to helper, no instance variables | Robert Schilling | 2016-07-01 | 1 | -7/+0 |
| | |||||
* | Add Todos API | Douglas Barbosa Alexandre | 2016-07-01 | 1 | -0/+7 |
| | |||||
* | Manually create todo for issuable | Phil Hughes | 2016-06-14 | 1 | -0/+1 |
| | | | | | | Added a button into the sidebar for issues & merge requests to allow users to manually create todo items Closes #15045 | ||||
* | Create a todo on failing MR build | Sean McGivern | 2016-05-17 | 1 | -2/+7 |
| | | | | | | | | | | | | When a build fails for a commit, create a todo for the author of the merge request that commit is the HEAD of. If the commit isn't the HEAD commit of any MR, don't do anything. If there already is a todo for that user and MR, don't do anything. Current limitations: - This isn't configurable by project. - The author of a merge request might not be the person who pushed the breaking commit. | ||||
* | Remove the annotate gem and delete old annotations | Jeroen van Baarsen | 2016-05-09 | 1 | -18/+0 |
| | | | | | | | | | In 8278b763d96ef10c6494409b18b7eb541463af29 the default behaviour of annotation has changes, which was causing a lot of noise in diffs. We decided in #17382 that it is better to get rid of the whole annotate gem, and instead let people look at schema.rb for the columns in a table. Fixes: #17382 | ||||
* | Refactor `Todo#target` | Douglas Barbosa Alexandre | 2016-03-18 | 1 | -5/+1 |
| | |||||
* | Rename `Todo#to_reference` to `Todo#target_reference` | Douglas Barbosa Alexandre | 2016-03-18 | 1 | -1/+1 |
| | | | | Since we're not actually returning a todo reference. | ||||
* | Use `Commit#short_id` instead of `Commit.truncate_sha` | Douglas Barbosa Alexandre | 2016-03-18 | 1 | -1/+1 |
| | |||||
* | Reuse `for_commit?` on conditional validations | Douglas Barbosa Alexandre | 2016-03-18 | 1 | -2/+2 |
| | |||||
* | Update schema info comment on todo related files | Douglas Barbosa Alexandre | 2016-03-18 | 1 | -2/+3 |
| | |||||
* | Use todo.done without ! in the controller to mark todo as done | Douglas Barbosa Alexandre | 2016-03-18 | 1 | -1/+1 |
| | |||||
* | Trigger a todo for mentions on commits page | Douglas Barbosa Alexandre | 2016-03-18 | 1 | -1/+28 |
| | |||||
* | Does not raise an error when Todo is already marked as done | Douglas Barbosa Alexandre | 2016-02-23 | 1 | -1/+1 |
| | |||||
* | "X assigned you Y" instead of "X assigned Y" | Douwe Maan | 2016-02-20 | 1 | -11/+0 |
| | |||||
* | Rename Tasks to Todos | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -0/+64 |