debian-mirror-gitlab/app/controllers/projects/settings/badges_controller.rb

14 lines
326 B
Ruby
Raw Normal View History

2018-05-09 12:01:36 +05:30
module Projects
module Settings
class BadgesController < Projects::ApplicationController
2018-11-08 19:23:39 +05:30
include API::Helpers::RelatedResourcesHelpers
2018-05-09 12:01:36 +05:30
before_action :authorize_admin_project!
def index
2018-11-08 19:23:39 +05:30
@badge_api_endpoint = expose_url(api_v4_projects_badges_path(id: @project.id))
2018-05-09 12:01:36 +05:30
end
end
end
end