mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-07 04:55:13 +00:00
14 lines
305 B
Ruby
14 lines
305 B
Ruby
class Api::Accounts::LookupController < ApiController
|
|
before_action :doorkeeper_authorize!
|
|
respond_to :json
|
|
|
|
def index
|
|
@accounts = Account.where(domain: nil).where(username: lookup_params)
|
|
end
|
|
|
|
private
|
|
|
|
def lookup_params
|
|
(params[:usernames] || '').split(',').map(&:strip)
|
|
end
|
|
end
|