dd99622347
- As opposed to the issue `id` that was previously being used. - This brings the API routes closer to the web interface's routes. - This is specific to API v4.
9 lines
180 B
Ruby
9 lines
180 B
Ruby
module API
|
|
module V3
|
|
module Helpers
|
|
def find_project_issue(id)
|
|
IssuesFinder.new(current_user, project_id: user_project.id).find(id)
|
|
end
|
|
end
|
|
end
|
|
end
|