diff options
author | Jarka Kadlecova <jarka@gitlab.com> | 2017-08-11 13:53:51 +0200 |
---|---|---|
committer | Jarka Kadlecova <jarka@gitlab.com> | 2017-08-11 14:24:59 +0200 |
commit | fc9e57434c57c8ebd36e7f038cf7535422e893e9 (patch) | |
tree | 057774ba5c7d051c9ea11c21263a008a638224e2 /app/serializers | |
parent | d542c2f1564eba2f0f5321d6b6a36f5ae0d7ea50 (diff) | |
download | gitlab-ce-fc9e57434c57c8ebd36e7f038cf7535422e893e9.tar.gz |
Fix failing static-analysis (rubocop)
Diffstat (limited to 'app/serializers')
-rw-r--r-- | app/serializers/issue_entity.rb | 2 | ||||
-rw-r--r-- | app/serializers/note_entity.rb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/serializers/issue_entity.rb b/app/serializers/issue_entity.rb index fbdd9f94763..0d6feb78173 100644 --- a/app/serializers/issue_entity.rb +++ b/app/serializers/issue_entity.rb @@ -23,7 +23,7 @@ class IssueEntity < IssuableEntity end expose :create_note_path do |issue| - namespace_project_notes_path(issue.project.namespace, issue.project, target_type: 'issue', target_id: issue.id) + project_notes_path(issue.project, target_type: 'issue', target_id: issue.id) end expose :preview_note_path do |issue| diff --git a/app/serializers/note_entity.rb b/app/serializers/note_entity.rb index 53b3ed41940..f84343aa71a 100644 --- a/app/serializers/note_entity.rb +++ b/app/serializers/note_entity.rb @@ -37,7 +37,7 @@ class NoteEntity < API::Entities::Note if note.for_personal_snippet? toggle_award_emoji_snippet_note_path(note.noteable, note) else - toggle_award_emoji_namespace_project_note_path(note.project.namespace, note.project, note.id) + toggle_award_emoji_project_note_path(note.project, note.id) end end @@ -49,12 +49,12 @@ class NoteEntity < API::Entities::Note if note.for_personal_snippet? snippet_note_path(note.noteable, note) else - namespace_project_note_path(note.project.namespace, note.project, note) + project_note_path(note.project, note) end end expose :attachment, using: NoteAttachmentEntity expose :delete_attachment_path, if: -> (note, _) { note.attachment? } do |note| - delete_attachment_namespace_project_note_path(note.project.namespace, note.project, note) + delete_attachment_project_note_path(note.project, note) end end |