blob: f85f529fc1bc0a9f294642b5a42f306b7daad1c9 (
plain)
1
2
3
4
5
6
7
|
class AutocompleteCalendarsController < ApplicationController
respond_to :json, :only => [:autocomplete]
def autocomplete
@calendars = current_organisation.referentials.search(params[:q]).result.paginate(page: params[:page])
end
end
|