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

17 lines
357 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"
2021-01-03 14:25:43 +05:30
feature_category :integrations
2017-08-17 22:00:37 +05:30
def show
2021-09-30 23:02:18 +05:30
@integrations = @project.find_or_initialize_integrations
2017-08-17 22:00:37 +05:30
end
end
end
end