Skip to content

Commit

Permalink
fix broken and wrong links blitz 2
Browse files Browse the repository at this point in the history
* changed relative link paths

* added slash in front

* making all fixes in backend module first

* fix wrong links

* fix broken and wrong links in blitz for wix-groups.v2
  • Loading branch information
rebeccask authored Jul 7, 2024
1 parent 971eb9c commit 6f770e0
Show file tree
Hide file tree
Showing 12 changed files with 58 additions and 58 deletions.
Binary file modified wix-groups-v2/wix-groups-v2/.DS_Store
Binary file not shown.
10 changes: 5 additions & 5 deletions wix-groups-v2/wix-groups-v2/CreateRequests.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -557,15 +557,15 @@
"summary": "Creates a query to retrieve a list of create requests. ",
"description": [
"",
"The `queryGroupRequests()` function builds a query to retrieve a list of all requests to create a group, and returns a [`GroupRequestsQueryBuilder`](#grouprequestsquerybuilder) object.",
"The `queryGroupRequests()` function builds a query to retrieve a list of all requests to create a group, and returns a `GroupRequestsQueryBuilder` object.",
"",
"The returned object contains the query definition which is typically used to run the query using the [`find()`](#grouprequestsquerybuilder/find) function. You can refine the query by chaining `GroupRequestQueryBuilder` functions onto the query. `GroupRequestQueryBuilder` functions enable you to sort, filter, and control the results that `queryGroupRequests()` returns.",
"The returned object contains the query definition which is typically used to run the query using the [`find()`](/group-requests-query-builder/find) function. You can refine the query by chaining `GroupRequestQueryBuilder` functions onto the query. `GroupRequestQueryBuilder` functions enable you to sort, filter, and control the results that `queryGroupRequests()` returns.",
"",
"`queryGorupRequests()` runs with these `GroupRequestsQueryBuilder` defaults, which you can override:",
"- [`limit(1000)`](#grouprequestsquerybuilder/limit)",
"- [`descending('_createdDate')`](#grouprequestsquerybuilder/descending)",
"- [`limit(1000)`](/group-requests-query-builder/limit)",
"- [`descending('_createdDate')`](/group-requests-query-builder/descending)",
"",
"The following `GroupRequestsQueryBuilder` functions are supported for `queryGroupRequests()`. For a full description of the `GroupRequests` object, see the object returned for the [`items`](#grouprequestsqueryresult/items) property in [`GroupRequestsQueryResult`](#grouprequestsqueryresult).",
"The following `GroupRequestsQueryBuilder` functions are supported for `queryGroupRequests()`. For a full description of the `GroupRequests` object, see the object returned for the [`items`](/group-requests-query-result/items) property in `GroupRequestsQueryResult`.",
"|PROPERTY\t|SUPPORTED FILTERS & SORTING\t",
"|:---:|:---:|",
"|`status`|[`eq()`](wix-groups-v2.CreateRequests.GroupRequestsQueryBuilder#eq),[`ne()`](wix-groups-v2.CreateRequests.GroupRequestsQueryBuilder#ne),[`exists()`](wix-groups-v2.CreateRequests.GroupRequestsQueryBuilder#exists),[`in()`](wix-groups-v2.CreateRequests.GroupRequestsQueryBuilder#in),[`hasSome()`](wix-groups-v2.CreateRequests.GroupRequestsQueryBuilder#hasSome)|"
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"description": [
"`currentPage` is a zero-based index of the current page of results, meaning the 1st page is `0`, the 2nd page is `1`, and so on.",
"If no results match the query, `currentPage` is undefined.",
"The page size is defined by the [`limit()`](wix-groups-v2.GroupRequests.GroupRequestsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result."
"The page size is defined by the [`limit()`](/group-requests-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result."
],
"examples": [
{
Expand Down Expand Up @@ -65,7 +65,7 @@
"description": [
"`items` contains the current page of results retrieved by the query.",
"If no results match the query, `items` is an empty array.",
"The page size is defined by the [`limit()`](wix-groups-v2.GroupRequests.GroupRequestsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result."
"The page size is defined by the [`limit()`](/group-requests-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result."
],
"examples": [
{
Expand Down Expand Up @@ -107,8 +107,8 @@
"docs": {
"summary": "Returns the number of items in the current page of results.",
"description": [
"`length` returns just the number of items in the current page, not the total number of items that match the query. For the total number of items that match the query, see [`totalCount`](#totalcount).",
"The page size is defined by the [`limit()`](wix-groups-v2.GroupRequests.GroupRequestsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result."
"`length` returns just the number of items in the current page, not the total number of items that match the query. For the total number of items that match the query, see [`totalCount`](#total-count).",
"The page size is defined by the [`limit()`](/group-requests-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result."
],
"examples": [
{
Expand Down Expand Up @@ -144,7 +144,7 @@
"docs": {
"summary": "Returns the requested page size.",
"description": [
"`pageSize` returns the page size set in [`limit()`](wix-groups-v2.GroupRequests.GroupRequestsQueryBuilder#limit) in `GroupRequestsQueryBuilder`."
"`pageSize` returns the page size set in [`limit()`](/group-requests-query-builder/limit) in `GroupRequestsQueryBuilder`."
],
"examples": [
{
Expand Down Expand Up @@ -252,7 +252,7 @@
"docs": {
"summary": "Returns the total number of pages the query produced.",
"description": [
"The page size is defined by the [`limit()`](wix-groups-v2.GroupRequests.GroupRequestsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result."
"The page size is defined by the [`limit()`](/group-requests-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result."
],
"examples": [
{
Expand Down Expand Up @@ -389,7 +389,7 @@
"summary": "Retrieves the next page of query results.",
"description": [
"The `next()` function retrieves the next page of query results.",
"The page size is defined by the [`limit()`](wix-groups-v2.GroupRequests.GroupRequestsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result.",
"The page size is defined by the [`limit()`](/group-requests-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result.",
"If items are added or removed between calls to `next()`, the values returned by `GroupRequestsQueryBuilder` may change."
],
"examples": [
Expand Down Expand Up @@ -462,7 +462,7 @@
"summary": "Retrieves the previous page of query results.",
"description": [
"The `prev()` function retrieves the previous page of query results.",
"The page size is defined by the [`limit()`](wix-groups-v2.GroupRequests.GroupRequestsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result.",
"The page size is defined by the [`limit()`](/group-requests-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `createRequests` to navigate the pages of a query result.",
"If items are added or removed between calls to `prev()`, the values returned may change."
],
"examples": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ title: Introduction
The Create Requests API provides functionality for managing requests to create a group.

With the Create Requests API, you can:
+ [Approve](wix-groups-v2/createrequests/approvegrouprequests) requests to create a group.
+ [List](wix-groups-v2/createrequests/listgrouprequests) requests to create a group.
+ [Query](wix-groups-v2/createrequests/querygrouprequests) requests to create a group.
+ [Reject](wix-groups-v2/createrequests/rejectgrouprequests) 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.


> **Note:** This module is only relevant if admin approval is required for creating a group.
Expand All @@ -44,7 +44,7 @@ Before you begin coding, make sure to add the [Wix Groups](https://support.wix.c
### 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-v2/groups/creategroup) function to create a group, and the group becomes a `groupRequest` 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 `groupRequest` with a status of `PENDING`.
+ Only a site admin can approve or reject requests to create a group.
+ When a site member's request to create a group is approved, the `groupRequest` status changes to `APPROVED`, and the newly created group is added to the Groups List page of your site.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"description": [
"`currentPage` is a zero-based index of the current page of results, meaning the 1st page is `0`, the 2nd page is `1`, and so on.",
"If no results match the query, `currentPage` is undefined.",
"The page size is defined by the [`limit()`](wix-groups-v2.Groups.GroupsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result."
"The page size is defined by the [`limit()`](/groups-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result."
],
"examples": [
{
Expand Down Expand Up @@ -65,7 +65,7 @@
"description": [
"`items` contains the current page of results retrieved by the query.",
"If no results match the query, `items` is an empty array.",
"The page size is defined by the [`limit()`](wix-groups-v2.Groups.GroupsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result."
"The page size is defined by the [`limit()`](/groups-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result."
],
"examples": [
{
Expand Down Expand Up @@ -107,8 +107,8 @@
"docs": {
"summary": "Returns the number of items in the current page of results.",
"description": [
"`length` returns just the number of items in the current page, not the total number of items that match the query. For the total number of items that match the query, see [`totalCount`](#totalcount).",
"The page size is defined by the [`limit()`](wix-groups-v2.Groups.GroupsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result."
"`length` returns just the number of items in the current page, not the total number of items that match the query. For the total number of items that match the query, see [`totalCount`](#total-count).",
"The page size is defined by the [`limit()`](/groups-query-builder/limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result."
],
"examples": [
{
Expand Down Expand Up @@ -144,7 +144,7 @@
"docs": {
"summary": "Returns the requested page size.",
"description": [
"`pageSize` returns the page size set in [`limit()`](wix-groups-v2.Groups.GroupsQueryBuilder#limit) in `GroupsQueryBuilder`."
"`pageSize` returns the page size set in [`limit()`](/groups-query-builder/limit) in `GroupsQueryBuilder`."
],
"examples": [
{
Expand Down Expand Up @@ -252,7 +252,7 @@
"docs": {
"summary": "Returns the total number of pages the query produced.",
"description": [
"The page size is defined by the [`limit()`](wix-groups-v2.Groups.GroupsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result."
"The page size is defined by the [`limit()`](/groups-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result."
],
"examples": [
{
Expand Down Expand Up @@ -389,7 +389,7 @@
"summary": "Retrieves the next page of query results.",
"description": [
"The `next()` function retrieves the next page of query results.",
"The page size is defined by the [`limit()`](wix-groups-v2.Groups.GroupsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result.",
"The page size is defined by the [`limit()`](/groups-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result.",
"If items are added or removed between calls to `next()`, the values returned by `GroupsQueryBuilder` may change."
],
"examples": [
Expand Down Expand Up @@ -462,7 +462,7 @@
"summary": "Retrieves the previous page of query results.",
"description": [
"The `prev()` function retrieves the previous page of query results.",
"The page size is defined by the [`limit()`](wix-groups-v2.Groups.GroupsQueryBuilder#limit) function and can be retrieved using the [`pageSize`](#pagesize) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result.",
"The page size is defined by the [`limit()`](/groups-query-builder/limit) function and can be retrieved using the [`pageSize`](#page-size) property. You can use the [`next()`](#next) and [`prev()`](#prev) functions returned by `groups` to navigate the pages of a query result.",
"If items are added or removed between calls to `prev()`, the values returned may change."
],
"examples": [
Expand Down
Loading

0 comments on commit 6f770e0

Please sign in to comment.