diff options
| author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-03-17 16:16:48 -0300 |
|---|---|---|
| committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-03-17 20:55:38 -0300 |
| commit | 6b86d3fb800bb551af4a446b87dfd64c963733a3 (patch) | |
| tree | 3a3d0f5a06d24c12df0a6f06ef34310354e52700 /app/controllers | |
| parent | abb77d0f6cec87455e7da13d6a977ac4b8f740f4 (diff) | |
| download | gitlab-ce-6b86d3fb800bb551af4a446b87dfd64c963733a3.tar.gz | |
Add an option to user make an issue confidential
Diffstat (limited to 'app/controllers')
| -rw-r--r-- | app/controllers/projects/issues_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/issues_controller.rb b/app/controllers/projects/issues_controller.rb index aa7a178dcf4..0907733fe42 100644 --- a/app/controllers/projects/issues_controller.rb +++ b/app/controllers/projects/issues_controller.rb @@ -158,7 +158,7 @@ class Projects::IssuesController < Projects::ApplicationController def issue_params params.require(:issue).permit( - :title, :assignee_id, :position, :description, + :title, :assignee_id, :position, :description, :confidential, :milestone_id, :state_event, :task_num, label_ids: [] ) end |
