mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 16:33:24 +00:00
10 lines
254 B
Ruby
10 lines
254 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::AppsController < ApiController
|
|
respond_to :json
|
|
|
|
def create
|
|
@app = Doorkeeper::Application.create!(name: params[:client_name], redirect_uri: params[:redirect_uris], scopes: params[:scopes])
|
|
end
|
|
end
|