mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-12-02 21:02:26 +03:00
Fix default sorting
This commit is contained in:
parent
b6f8897939
commit
855a7e841a
11 changed files with 11 additions and 11 deletions
|
@ -98,7 +98,7 @@ App.Http.Admins = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Appointments = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.BlockedPeriods = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Customers = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Providers = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Secretaries = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.ServiceCategories = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Services = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Settings = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Unavailabilities = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Webhooks = (function () {
|
||||||
keyword,
|
keyword,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
order_by: orderBy,
|
order_by: orderBy || undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
return $.post(url, data);
|
return $.post(url, data);
|
||||||
|
|
Loading…
Reference in a new issue