mirror of
https://github.com/glitch-soc/mastodon
synced 2025-05-29 17:36:31 +00:00
9 lines
229 B
Ruby
9 lines
229 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])
|
|
end
|
|
end
|