mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 16:33:24 +00:00
14 lines
227 B
Ruby
14 lines
227 B
Ruby
class Api::V1::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
|