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,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Appointments = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.BlockedPeriods = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Customers = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Providers = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Secretaries = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.ServiceCategories = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Services = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Settings = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Unavailabilities = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
|
@ -98,7 +98,7 @@ App.Http.Webhooks = (function () {
|
|||
keyword,
|
||||
limit,
|
||||
offset,
|
||||
order_by: orderBy,
|
||||
order_by: orderBy || undefined,
|
||||
};
|
||||
|
||||
return $.post(url, data);
|
||||
|
|
Loading…
Reference in a new issue