1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-02 08:48:19 +09:00
mastodon/app/controllers/api/v1/apps_controller.rb

10 lines
229 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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