1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-22 18:48:43 +09:00
YuruToot/app/controllers/api/v1/apps_controller.rb

10 lines
254 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
@app = Doorkeeper::Application.create!(name: params[:client_name], redirect_uri: params[:redirect_uris], scopes: params[:scopes])
end
end