mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 08:23:14 +00:00
8 lines
198 B
Ruby
8 lines
198 B
Ruby
class Api::V1::AppsController < ApiController
|
|
respond_to :json
|
|
|
|
def create
|
|
@app = Doorkeeper::Application.create!(name: params[:client_name], redirect_uri: params[:redirect_uris])
|
|
end
|
|
end
|