mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
7 lines
217 B
Ruby
7 lines
217 B
Ruby
class Client::ContactsController < ClientController
|
|
|
|
# TODO: Add Registrar to Contacts and search only contacts that belong to this domain
|
|
def search
|
|
render json: Contact.search_by_query(params[:q])
|
|
end
|
|
end
|