Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/app/controllers/api/apps_controller.rb
2016-09-26 23:56:53 +02:00

13 lines
223 B
Ruby

class Api::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