mirror of
https://github.com/kikobar/mastodon.git
synced 2024-12-28 16:54:18 +00:00
12 lines
251 B
Ruby
12 lines
251 B
Ruby
|
class Api::Accounts::LookupController < ApplicationController
|
||
|
def index
|
||
|
@accounts = Account.where(domain: nil).where(username: lookup_params)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def lookup_params
|
||
|
(params[:usernames] || '').split(',').map(&:strip)
|
||
|
end
|
||
|
end
|