mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-11 06:31:55 +01:00
7e14eefc81
registration API
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
|