2014-12-19 09:15:29 -05:00
|
|
|
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
|
|
|
|
before_filter :authenticate_user!
|
|
|
|
layout "profile"
|
|
|
|
|
|
|
|
def index
|
2014-12-25 11:35:04 -05:00
|
|
|
head :forbidden and return
|
2014-12-19 09:15:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@application = Doorkeeper::Application.new(application_params)
|
2014-12-25 09:46:28 -05:00
|
|
|
|
2015-01-17 18:37:27 -05:00
|
|
|
@application.owner = current_user
|
|
|
|
|
2014-12-19 09:15:29 -05: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
|
2014-12-25 09:46:28 -05:00
|
|
|
if @application.destroy
|
|
|
|
flash[:notice] = I18n.t(:notice, scope: [:doorkeeper, :flash, :applications, :destroy])
|
|
|
|
end
|
|
|
|
|
2014-12-25 11:46:19 -05:00
|
|
|
redirect_to applications_profile_url
|
2014-12-19 09:15:29 -05:00
|
|
|
end
|
2014-12-25 11:35:04 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
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
|
2014-12-25 09:46:28 -05:00
|
|
|
end
|