This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-14 09:49:13 -07:00
|
|
|
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
|
2016-08-17 08:56:23 -07:00
|
|
|
before_action :authenticate_user!
|
2016-03-14 09:49:13 -07: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
|