mastodon/app/controllers/api/v1/apps_controller.rb

14 lines
227 B
Ruby
Raw Normal View History

2016-09-27 14:58:23 +00:00
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