gitlab-org--gitlab-foss/app/controllers/oauth/applications_controller.rb

51 lines
1.2 KiB
Ruby
Raw Normal View History

2014-12-19 14:15:29 +00:00
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
include Gitlab::CurrentSettings
include PageLayoutHelper
before_action :verify_user_oauth_applications_enabled
before_action :authenticate_user!
layout 'profile'
2014-12-19 14:15:29 +00:00
def index
head :forbidden and return
2014-12-19 14:15:29 +00:00
end
def create
@application = Doorkeeper::Application.new(application_params)
2015-01-17 23:37:27 +00:00
@application.owner = current_user
2014-12-19 14:15:29 +00:00
if @application.save
flash[:notice] = I18n.t(:notice, scope: [:doorkeeper, :flash, :applications, :create])
redirect_to oauth_application_url(@application)
else
render :new
end
end
def destroy
if @application.destroy
flash[:notice] = I18n.t(:notice, scope: [:doorkeeper, :flash, :applications, :destroy])
end
redirect_to applications_profile_url
2014-12-19 14:15:29 +00:00
end
private
def verify_user_oauth_applications_enabled
return if current_application_settings.user_oauth_applications?
redirect_to applications_profile_url
end
def set_application
@application = current_user.oauth_applications.find(params[:id])
end
rescue_from ActiveRecord::RecordNotFound do |exception|
render "errors/not_found", layout: "errors", status: 404
end
end