forked from mirrors/easyappointments
The search method parameters are optional
This commit is contained in:
parent
0576e69ad5
commit
71e12a1aae
9 changed files with 36 additions and 36 deletions
|
@ -84,13 +84,13 @@ App.Http.Admins = (function () {
|
||||||
* Search admins by keyword.
|
* Search admins by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('admins/search');
|
const url = App.Utils.Url.siteUrl('admins/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
|
@ -84,13 +84,13 @@ App.Http.Appointments = (function () {
|
||||||
* Search appointments by keyword.
|
* Search appointments by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('appointments/search');
|
const url = App.Utils.Url.siteUrl('appointments/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
|
@ -84,13 +84,13 @@ App.Http.Categories = (function () {
|
||||||
* Search categories by keyword.
|
* Search categories by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('categories/search');
|
const url = App.Utils.Url.siteUrl('categories/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
|
@ -84,13 +84,13 @@ App.Http.Providers = (function () {
|
||||||
* Search providers by keyword.
|
* Search providers by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('providers/search');
|
const url = App.Utils.Url.siteUrl('providers/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
|
@ -84,13 +84,13 @@ App.Http.Secretaries = (function () {
|
||||||
* Search secretaries by keyword.
|
* Search secretaries by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('secretaries/search');
|
const url = App.Utils.Url.siteUrl('secretaries/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
|
@ -84,13 +84,13 @@ App.Http.Services = (function () {
|
||||||
* Search services by keyword.
|
* Search services by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('services/search');
|
const url = App.Utils.Url.siteUrl('services/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
|
@ -84,13 +84,13 @@ App.Http.Settings = (function () {
|
||||||
* Search settings by keyword.
|
* Search settings by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('settings/search');
|
const url = App.Utils.Url.siteUrl('settings/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
|
@ -84,13 +84,13 @@ App.Http.Unavailabilities = (function () {
|
||||||
* Search unavailabilities by keyword.
|
* Search unavailabilities by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('unavailabilities/search');
|
const url = App.Utils.Url.siteUrl('unavailabilities/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
|
@ -84,13 +84,13 @@ App.Http.Webhooks = (function () {
|
||||||
* Search webhooks by keyword.
|
* Search webhooks by keyword.
|
||||||
*
|
*
|
||||||
* @param {String} keyword
|
* @param {String} keyword
|
||||||
* @param {Number} limit
|
* @param {Number} [limit]
|
||||||
* @param {Number} offset
|
* @param {Number} [offset]
|
||||||
* @param {String} orderBy
|
* @param {String} [orderBy]
|
||||||
*
|
*
|
||||||
* @return {Object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function search(keyword, limit, offset, orderBy) {
|
function search(keyword, limit = null, offset = null, orderBy = null) {
|
||||||
const url = App.Utils.Url.siteUrl('webhooks/search');
|
const url = App.Utils.Url.siteUrl('webhooks/search');
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
|
|
Loading…
Reference in a new issue