2016-03-14 17:49:13 +01:00
|
|
|
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
|
2016-08-17 17:56:23 +02:00
|
|
|
before_action :authenticate_user!
|
2016-03-14 17:49:13 +01:00
|
|
|
|
|
|
|
def index
|
|
|
|
@applications = current_user.oauth_applications
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@application = Doorkeeper::Application.new(application_params)
|
|
|
|
@application.owner = current_user
|
|
|
|
|
|
|
|
if @application.save
|
|
|
|
redirect_to oauth_application_url(@application)
|
|
|
|
else
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|