mastodon/app/controllers/api/apps_controller.rb

14 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