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

15 lines
311 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Projects
module Settings
class IntegrationsController < Projects::ApplicationController
before_action :authorize_admin_project!
layout "project_settings"
def show
2020-04-22 19:07:51 +05:30
@services = @project.find_or_initialize_services
2017-08-17 22:00:37 +05:30
end
end
end
end