1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-02 16:58:45 +09:00
whippy-edition/app/controllers/api/v1/apps_controller.rb

8 lines
198 B
Ruby
Raw Normal View History

2016-09-30 07:00:45 +09:00
class Api::V1::AppsController < ApiController
respond_to :json
def create
2016-09-30 07:03:08 +09:00
@app = Doorkeeper::Application.create!(name: params[:client_name], redirect_uri: params[:redirect_uris])
end
end