The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

9 wiersze
217 B

  1. class Api::MediaController < ApiController
  2. before_action :doorkeeper_authorize!
  3. respond_to :json
  4. def create
  5. @media = MediaAttachment.create!(account: current_user.account, file: params[:file])
  6. end
  7. end