Skip to content

Commit

Permalink
Merge branch 'master' into doc-bug-wixapplication
Browse files Browse the repository at this point in the history
  • Loading branch information
emmagrob authored Jul 4, 2024
2 parents 5f13774 + d1f67da commit 02885d7
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions wix-billing-backend/wix-billing-backend.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"and [create and manage price quotes](https://support.wix.com/en/article/wix-price-quotes-creating-and-sending-price-quotes-to-clients).",
"",
" With the Wix billing APIs, you can:",
" - Manage [invoices](wix-billing-backend/invoices).",
" - Manage [price quotes](wix-billing-backend/pricequotes).",
" - Manage [invoices](/invoices/introduction).",
" - Manage [price quotes](/price-quotes/introduction).",
" - Create custom handling in response to backend [invoice events](wix-billing-backend/events/introduction).",
" - Create custom handling in response to backend [price quote events](wix-billing-backend/events/introduction).",
" ",
Expand All @@ -29,7 +29,7 @@
" It’s important to note the following points before starting to code: ",
"",
" Invoices is an online payment request system and not an accounting service. ",
" In order to accept payments from customers in Wix Invoices, you must set up a [payment method](https://support.wix.com/en/article/setting-up-payment-methods-in-wix-invoices).",
" In order to accept payments from customers in Wix Invoices, you must set up a [payment method](https://support.wix.com/en/article/accepting-payments-an-overview).",
" ",
"## Terminology",
"",
Expand Down Expand Up @@ -91,4 +91,4 @@
"messages": [],
"extra":
{ "scopes":
[ "backend" ] } }
[ "backend" ] } }
2 changes: 1 addition & 1 deletion wix-groups-backend/wix-groups-backend.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"+ If a group's privacy level is set to `SECRET`, group admins or group members can add additional members to their group.",
"+ If a group's privacy level is set to `PUBLIC` or `PRIVATE`, group admins determine whether group members can add additional members to their group. ",
"+ This setting can be found in your site's Dashboard under **Groups Application > Your Group > Admin Tools > Member Permissions**. ",
"+ If set to all members, group members can add additional members to the group using the [`addGroupMembers()`](members/addgroupmembers) function (no approval required). ",
"+ If set to all members, group members can add additional members to the group using the [`addGroupMembers()`](/members/add-group-members) function (no approval required). ",
"+ If set to admins only, only admins can add additional members to the group using the `addGroupMembers()` function.",
"+ The default is set to admins only. ",
"+ **Note:** If the `suppressAuth` option is set to `true`, all permissions are overwritten and all site members (including non-group members) can add additional members to a group. ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
"### Settings for Typical Use Case",
"+ Site admins determine who can create groups. They can choose to require that site members request approval when creating a group. ",
"+ This setting can be found in your site's Dashboard under **Groups Application > General Settings > Group Creation**. ",
"+ If set to admin approval required, a site member uses the [`createGroup()`](wix-groups-backend.Groups/creategroup) function to create a group, and the group becomes a `createRequest` with a status of `PENDING`. ",
"+ If set to admin approval required, a site member uses the [`createGroup()`](/groups/create-group) function to create a group, and the group becomes a `createRequest` with a status of `PENDING`. ",
"+ Only a site admin can approve or reject requests to create a group. ",
"+ **Note:** If the `suppressAuth` option is set to `true`, all permissions are overwritten, and all site members can approve or reject requests to create a group. ",
"+ When a site member's request to create a group is approved, the `createRequest` status changes to `APPROVED`, and the newly created group is added to the Groups List page of your site.",
" ",
"The CreateRequests API provides functionality allowing you to: ",
" + [Approve](wix-groups-backend.createRequests/approvecreaterequests) requests to create a group. ",
" + [List](wix-groups-backend.createRequests/listcreaterequests) requests to create a group. ",
" + [Query](wix-groups-backend.createRequests/querycreaterequests) requests to create a group.",
" + [Reject](wix-groups-backend.createRequests/rejectcreaterequests) requests to create a group. ",
" + [Approve](/create-requests/approve-group-requests) requests to create a group. ",
" + [List](/create-requests/list-group-requests) requests to create a group. ",
" + [Query](/create-requests/query-group-requests) requests to create a group.",
" + [Reject](/create-requests/reject-group-requests) requests to create a group. ",
"",
"### Permissions Information",
">**Note:** You can override the permissions below by setting the `suppressAuth` option to `true`. ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"description":
[ "The `currentPage` is a zero-based index of the current page of results.",
"",
"The page size is defined by the [`limit()`](wix-groups-backend.CreateRequestsQueryBuilder.html#limit)",
"function, can be retrieved using the [`pageSize`](#pageSize) property, and",
"The page size is defined by the [`limit()`](/group-requests-query-builder/limit)",
"function, can be retrieved using the [`pageSize`](#page-size) property, and",
"navigating through pages is done with the [`prev()`](#prev) and",
"[`next()`](#next) functions.",
"",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"description":
[ "The `currentPage` is a zero-based index of the current page of results.",
"",
"The page size is defined by the [`limit()`](wix-groups-backend.GroupsQueryBuilder.html#limit)",
"function, can be retrieved using the [`pageSize`](#pageSize) property, and",
"The page size is defined by the [`limit()`](/groups-query-builder/limit)",
"function, can be retrieved using the [`pageSize`](#page-size) property, and",
"navigating through pages is done with the [`prev()`](#prev) and",
"[`next()`](#next) functions.",
"",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"description":
[ "The `currentPage` is a zero-based index of the current page of results.",
"",
"The page size is defined by the [`limit()`](wix-groups-backend.JoinRequestsQueryBuilder.html#limit)",
"function, can be retrieved using the [`pageSize`](#pageSize) property, and",
"The page size is defined by the [`limit()`](/join-group-requests-query-builder/limit)",
"function, can be retrieved using the [`pageSize`](#page-size) property, and",
"navigating through pages is done with the [`prev()`](#prev) and",
"[`next()`](#next) functions.",
"",
Expand Down
14 changes: 7 additions & 7 deletions wix-groups-backend/wix-groups-backend/Members.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
"+ If a group's privacy level is set to `SECRET`, group admins or group members can add additional members to their group.",
"+ If a group's privacy level is set to `PUBLIC` or `PRIVATE`, group admins determine whether group members can add additional members to their group. ",
"+ This setting can be found in your site's Dashboard under **Groups Application > Your Group > Admin Tools > Member Permissions**. ",
"+ If set to all members, group members can add additional members to the group using the [`addGroupMembers()`](wix-groups-backend.Members/addGroupMembers) function (no approval required). ",
"+ If set to all members, group members can add additional members to the group using the [`addGroupMembers()`](/members/add-group-members) function (no approval required). ",
"+ If set to admins only, only admins can add additional members to the group using the `addGroupMembers()` function.",
"+ The default is set to admins only. ",
"+ **Note:** If the `suppressAuth` option is set to `true`, all permissions are overwritten and all site members (including non-group members) can add additional members to a group. ",
"",
"The Members API provides functionality allowing you to:",
" + [Add](wix-groups-backend.Members/addgroupmembers) members to a group. ",
" + [List](wix-groups-backend.Members/listgroupmembers) all members of a group. ",
" + [List](wix-groups-backend.Members/listmemberships) a site member's group memberships. ",
" + [Query](wix-groups-backend.Members/querygroupmembers) members of a group. ",
" + [Query](wix-groups-backend.Members/querymemberships) a site member's group memberships. ",
" + [Remove](wix-groups-backend.Members/removegroupmembers) members of a group. ",
" + [Add](/members/add-group-members) members to a group. ",
" + [List](/members/list-group-members) all members of a group. ",
" + [List](/members/list-memberships) a site member's group memberships. ",
" + [Query](/members/query-group-members) members of a group. ",
" + [Query](/members/query-memberships) a site member's group memberships. ",
" + [Remove](/members/remove-group-members) members of a group. ",
"",
"### Permissions Information",
">**Note:** You can override the permissions below by setting the `suppressAuth` option to `true`. ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"description":
[ "The `currentPage` is a zero-based index of the current page of results.",
"",
"The page size is defined by the [`limit()`](wix-groups-backend.GroupMembersQueryBuilder.html#limit)",
"function, can be retrieved using the [`pageSize`](#pageSize) property, and",
"The page size is defined by the [`limit()`](/members-query-builder/limit)",
"function, can be retrieved using the [`pageSize`](#page-size) property, and",
"navigating through pages is done with the [`prev()`](#prev) and",
"[`next()`](#next) functions.",
"",
Expand Down

0 comments on commit 02885d7

Please sign in to comment.