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
|