mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
13 lines
223 B
Ruby
13 lines
223 B
Ruby
class Api::AppsController < ApplicationController
|
|
respond_to :json
|
|
|
|
def create
|
|
@app = Doorkeeper::Application.create!(app_params)
|
|
end
|
|
|
|
private
|
|
|
|
def app_params
|
|
params.permit(:name, :redirect_uri)
|
|
end
|
|
end
|