mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 05:53:14 -08:00
18 lines
424 B
Ruby
18 lines
424 B
Ruby
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
|
|
before_action :authenticate_user!
|
|
|
|
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
|