mirror of
https://github.com/whippyshou/mastodon
synced 2024-12-02 08:48:33 +09: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
|