aboutsummaryrefslogtreecommitdiffstats
path: root/services/issue
Commit message (Collapse)AuthorAgeFilesLines
...
* Move actions to notification (#8785)Lunny Xiao2019-11-031-15/+0
|
* Move issue milestone assign to issue service and move webhook to ↵Lunny Xiao2019-11-021-0/+21
| | | | notification (#8780)
* Move labels webhooks to notification (#8749)Lunny Xiao2019-11-021-52/+3
| | | | | | * Move webhooks to notification * fix notification
* Move webhook to a standalone package under modules (#8747)Lunny Xiao2019-11-011-3/+4
| | | | | | | | * Move webhook to a standalone package under modules * fix test * fix comments
* Move issue change content from models to service (#8711)Lunny Xiao2019-10-301-0/+23
| | | | | | * Move issue change content from models to service * fix lint
* Move issue notifications (#8713)Lunny Xiao2019-10-291-24/+8
|
* Move issue change status from models to service (#8691)Lunny Xiao2019-10-281-0/+21
|
* Move more issue assignee code from models to issue service (#8690)Lunny Xiao2019-10-283-42/+93
| | | | | | * Move more issue assignee code from models to issue service * fix test
* Mail assignee when issue/pull request is assigned (#8546)David Svantesson2019-10-251-2/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Send email to assigned user * Only send mail if enabled * Mail also when assigned through API * Need to refactor functions from models to issue service * Refer to issue index rather than ID * Disable email notifications completly at initalization if global disable * Check of user enbled mail shall be in mail notification function only * Initialize notifications from routers init function. * Use the assigned comment when sending assigned mail * Refactor so that assignees always added as separate step when new issue/pr. * Check error from AddAssignees * Check if user can be assiged to issue or pull request * Missing return * Refactor of CanBeAssigned check. CanBeAssigned shall have same check as UI. * Clarify function names (toggle rather than update/change), and clean up. * Fix review comments. * Flash error if assignees was not added when creating issue/pr * Generate error if assignee users doesn't exist
* Move issue label operations to issue service package (#8553)Lunny Xiao2019-10-193-0/+165
| | | | | | | | * Move issue label operations to issue service package * fix test * fix fmt
* Move clearlabels from models to issue service (#8326)Lunny Xiao2019-10-151-0/+21
| | | | | | | | | | * move clearlabels from models to issue service * improve code * Apply suggestions from code review Co-Authored-By: zeripath <art27@cantab.net>
* Move change issue title from models to issue service package (#8456)Lunny Xiao2019-10-111-0/+51
| | | | | | | | * move change issue title from models to issue service package * make the change less * fix typo
* Extract actions on new issue from models to services (#8217)Lunny Xiao2019-09-301-0/+47
* extract actions on new issue from models to services * improve code * rename services/issues to services/issue