You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/addons/ats-addon/rg-ats/v1/rg-one-projects.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,4 +63,4 @@ There are three sections on the dashboard. The upper-left section (1) shows you
63
63
64
64
## 6 Developer Portal integration
65
65
66
-
Projects in ATS can be connected to Mendix Developer Portal projects. If this is done, ATS will fetch all sprints and user stories from the project. This allows you to connect your test cases to user stories.
66
+
Projects in ATS can be connected to Mendix Developer Portal projects. If this is done, ATS will fetch all Sprints and user stories from the project. This allows you to connect your test cases to user stories.
Copy file name to clipboardExpand all lines: content/en/docs/apidocs-mxsdk/apidocs/feedback-api.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ Each call also requires the parameters 'username' and 'password'. These are the
28
28
29
29
### 2.1 AcceptFeedback
30
30
31
-
This call **accepts** the specified feedback item. This means that the app team has accepted the feedback and added this feedback as a story to the sprint.
31
+
This call **accepts** the specified feedback item. This means that the app team has accepted the feedback and added this feedback as a story to the Sprint.
Copy file name to clipboardExpand all lines: content/en/docs/apidocs-mxsdk/apidocs/stories-api.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ weight: 60
7
7
8
8
## 1 Introduction
9
9
10
-
The Mendix Stories API allows you to retrieve, create, and update the sprints, stories, and tasks in your Mendix projects.
10
+
The Mendix Stories API allows you to retrieve, create, and update the Sprint, stories, and tasks in your Mendix apps.
11
11
12
12
{{% alert color="info" %}}
13
13
Each call also requires the parameters `username` and `password`. These are the public credentials you will find below; actual authentication of requests is done through API keys.
@@ -26,22 +26,22 @@ To use the API, you need to set up a **Consumed Web Service** using the WDSL for
26
26
27
27
### 2.1 Microflow CreateSprint
28
28
29
-
This microflow creates a new sprint for the specified project and returns the ID of the new sprint.
29
+
This microflow creates a new Sprint for the specified project and returns the ID of the new Sprint.
30
30
31
31
| Parameter Name | Parameter Type | Description|
32
32
| --- | --- | --- |
33
33
| ApiKey | String | The API Key the application uses to access the Stories API for this project. |
34
-
| DurationInWeeks | Integer/Long | Duration of the new sprint in weeks.|
35
-
| Name | String | Name of the new sprint.|
34
+
| DurationInWeeks | Integer/Long | Duration of the new Sprint in weeks.|
35
+
| Name | String | Name of the new Sprint.|
36
36
| ProjectID | String | The ID of the project. |
37
-
| StartDate | Date and time | Start date for the new sprint. If not filled, the sprint will automatically start directly after * the previous sprint. (optional)|
38
-
| StartsAfterSprint | Integer/Long | ID of the Sprint directly preceding the new sprint. |
37
+
| StartDate | Date and time | Start date for the new Sprint. If not filled, the Sprint will automatically start directly after * the previous Sprint. (optional)|
38
+
| StartsAfterSprint | Integer/Long | ID of the Sprint directly preceding the new Sprint. |
39
39
40
40
* Return value – Integer/Long
41
41
42
42
### 2.2 Microflow CreateStory
43
43
44
-
This microflow creates a new story in the specified sprint and returns the ID of the new story. Parameters:
44
+
This microflow creates a new story in the specified Sprint and returns the ID of the new story. Parameters:
45
45
46
46
| Parameter Name | Parameter Type | Description
47
47
| --- | --- | --- |
@@ -50,7 +50,7 @@ This microflow creates a new story in the specified sprint and returns the ID of
50
50
| Name | String | Name of the new story.
51
51
| Points | Enumeration StoryPoints | Number of story points. If left empty will be set to 1\. (_1/_2/_3/_5/_8/_13/_20/_40/_100, optional)
52
52
| ProjectID | String | The ID of the project.
53
-
| SprintID | Integer/Long | The ID of the sprint.
53
+
| SprintID | Integer/Long | The ID of the Sprint.
54
54
| StoryType | Enumeration StoryType | The type of the story (Feature or Bug)
55
55
56
56
* Return value – Integer/Long
@@ -71,19 +71,19 @@ This microflow creates a new task for the specified story and returns the ID of
71
71
72
72
### 2.4 Microflow GetSprintByID
73
73
74
-
This microflow retrieves a specific sprint. Parameters:
74
+
This microflow retrieves a specific Sprint. Parameters:
75
75
76
76
| Parameter Name | Parameter Type | Description
77
77
| --- | --- | --- |
78
78
| ApiKey | String | The API Key the application uses to access the Stories API for this project.
79
79
| ProjectID | String | The ID of the project.
80
-
| SprintID | Integer/Long | The ID of the sprint.
80
+
| SprintID | Integer/Long | The ID of the Sprint.
81
81
82
82
* Return value – Sprint_Transient
83
83
84
84
### 2.5 Microflow GetSprints
85
85
86
-
This microflow retrieves all sprints in a specific project. Parameters:
86
+
This microflow retrieves all Sprints in a specific project. Parameters:
87
87
88
88
| Parameter Name | Parameter Type | Description
89
89
| --- | --- | --- |
@@ -94,13 +94,13 @@ This microflow retrieves all sprints in a specific project. Parameters:
94
94
95
95
### 2.6 Microflow GetStories
96
96
97
-
This microflow retrieves all stories in a specific sprint. Parameters:
97
+
This microflow retrieves all stories in a specific Sprint. Parameters:
98
98
99
99
| Parameter Name | Parameter Type | Description
100
100
| --- | --- | --- |
101
101
| ApiKey | String | The API Key the application uses to access the Stories API for this project.
102
102
| ProjectID | String | The ID of the project.
103
-
| SprintID | Integer/Long | The ID of the sprint for which stories are being retrieved.
103
+
| SprintID | Integer/Long | The ID of the Sprint for which stories are being retrieved.
104
104
105
105
* Return value – List of Story_Transient
106
106
@@ -149,7 +149,7 @@ This microflow updates a story with modified information. Parameters:
149
149
| ApiKey | String | The API Key the application uses to access the Stories API for this project.
150
150
| Description | String | Description of the story (optional)
151
151
| Name | String | Name of the story.
152
-
| ParentSprintID | Integer/Long | The ID of the sprint the story is in.
152
+
| ParentSprintID | Integer/Long | The ID of the Sprint the story is in.
153
153
| Points | Enumeration StoryPoints | Number of story points. (_1/_2/_3/_5/_8/_13/_20/_40/_100)
154
154
| ProjectID | String | The ID of the project.
155
155
| Status | Enumeration BacklogState | Status of the story, (Open/Started/Done)
Copy file name to clipboardExpand all lines: content/en/docs/refguide7/desktop-modeler/desktop-modeler-overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ The table below describes all the available dockable window panes.
44
44
| Get Started | Shows useful resources for getting started with the Mendix Modeler. |
45
45
| Project Explorer | Shows the complete structure of your project including all documents inside the modules. By default the active document is always selected in the project explorer so you can quickly see where the document you are editing is in the tree. You can change this behavior in the **Edit** > **Preferences** window pane. |
46
46
| Properties | Shows properties of the currently selected element. This is where a lot of editing in the Modeler takes place. |
47
-
| Stories | For [Team Server](/refguide7/team-server/) enabled projects, this pane shows the stories of the current sprint. |
47
+
| Stories | For [Team Server](/refguide7/team-server/) enabled projects, this pane shows the stories of the current Sprint. |
48
48
| Toolbox | Shows the tools that can be used in the current editor. For example, in a page you can insert all kinds of widgets (for example, text box and data view) by dragging them from the **Toolbox** to your form. |
49
49
| Variables (via Debug Windows) | You can view the current values of variables here when debugging your application. |
Copy file name to clipboardExpand all lines: content/en/docs/refguide7/version-control/using-version-control-in-the-dm.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ In general, it is a good idea to commit after implementing one feature or fixing
100
100
Committing results in a new revision in the repository. You can add the following information in the Desktop Modeler when you perform a commit, and this will be attached to the newly created revision:
101
101
102
102
* A textual message. This should be a summary of the changes you made
103
-
* A list of Developer Portal stories that relate to the commit. A small commit will probably relate to one story. The Modeler shows stories that are in the current sprint and do not have a status of *Done*. Adding the story to the commit will not change the state of the Developer Portal story. Setting the status to 'Done' must be done manually and depends on your *definition of done*.
103
+
* A list of Developer Portal stories that relate to the commit. A small commit will probably relate to one story. The Modeler shows stories that are in the current Sprint and do not have a status of *Done*. Adding the story to the commit will not change the state of the Developer Portal story. Setting the status to 'Done' must be done manually and depends on your *definition of done*.
For version control enabled projects (projects with Team Server or other SVN servers), the **Stories** pane displays the stories and tasks of the current [Sprint](/developerportal/collaborate/stories/). Stories, tasks, and sprints are created and managed in the Developer Portal. For more information on stories, see [Stories](/developerportal/collaborate/stories/). For more information on tasks, see the [Adding a Task to a Story](/developerportal/collaborate/stories/#adding-task) section in *Stories*.
15
+
For version control enabled projects (projects with Team Server or other SVN servers), the **Stories** pane displays the stories and tasks of the current [Sprint](/developerportal/collaborate/stories/). Stories, tasks, and Sprint are created and managed in the Developer Portal. For more information on stories, see [Stories](/developerportal/collaborate/stories/). For more information on tasks, see the [Adding a Task to a Story](/developerportal/collaborate/stories/#adding-task) section in *Stories*.
16
16
17
-
In the **Stories** pane, you can view the stories and tasks of the current sprint, show or hide done stories, open their details, change the status of the stories and tasks, and open documents connected to stories.
17
+
In the **Stories** pane, you can view the stories and tasks of the current Sprint, show or hide done stories, open their details, change the status of the stories and tasks, and open documents connected to stories.
18
18
19
19
The **Stories** pane consists of the top bar with various buttons and a table:
Copy file name to clipboardExpand all lines: content/en/docs/releasenotes/developer-portal/_index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,7 @@ In Portfolio Management, you can do the following
197
197
198
198
#### Improvements
199
199
200
-
* We improved some empty states in the story details dialog box, epics details dialog box, archived sprint details dialog box, and archived story details dialog box in Epics.
200
+
* We improved some empty states in the story details dialog box, epics details dialog box, archived Sprint details dialog box, and archived story details dialog box in Epics.
201
201
202
202
### September 15th, 2022
203
203
@@ -269,13 +269,13 @@ In Portfolio Management, you can do the following
269
269
270
270
* Map your exact development process with fully customizable swimlanes
271
271
* Use Scrum or Kanban – we support both!
272
-
* Set sprint goals and see all the basic sprint information on the board – if you are using Scrum
272
+
* Set Sprint goals and see all the basic Sprint information on the board – if you are using Scrum
273
273
* Drag and drop stories on our brand new project board
274
274
* Format stories in any way you want – for example, adding headers, links, and code blocks, linking specific stories, and using @ to mention people (notifications for this coming soon!)
275
275
* Clone stories
276
276
* Create and track the progress of epics
277
277
* Archive single stories or whole swimlanes
278
-
* Easily search through your completed stories and get an overview of completed sprints in the archive
278
+
* Easily search through your completed stories and get an overview of completed Sprints in the archive
279
279
280
280
You can try it out for any Mendix app. Your Scrum Master just needs to enable Epics in the [General Settings](/developerportal/collaborate/general-settings/#project-management). Please note it is not yet possible to migrate the data from Stories into Epics, so we recommend using it for new projects or iterations first – in this way you do not have to worry about the stories in your current backlog.
281
281
@@ -963,7 +963,7 @@ In Portfolio Management, you can do the following
963
963
964
964
#### Webhooks Available
965
965
966
-
* We have added the ability to create webhooks for your apps. These webhooks can be configured to send information when sprints change and/or stories change.
966
+
* We have added the ability to create webhooks for your apps. These webhooks can be configured to send information when Sprints change and/or stories change.
Copy file name to clipboardExpand all lines: content/en/docs/releasenotes/sdk/model-sdk/model-sdk-2.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ SDK version 2.2.0 and 2.2.1 were unpublished because they were published in a br
105
105
| Impact | Description |
106
106
| --- | --- |
107
107
| Minor | Added support for Mendix 6.4.0 |
108
-
| Low | Working copies that are connected to sprintr projects can now be deployed and their runtime status can be requested |
108
+
| Low | Working copies that are connected to projects can now be deployed and their runtime status can be requested |
109
109
| Low | Unit-loading now has an extra optional forceRefresh option. If set, it will then bypass the Mendix MOdel SDK cache, and get the fresh unit straight from the source/server. |
110
110
| Minor | All classes that could be useful for reflection on the model are now exposed through `mendixmodelsdk`, so imports from `mendixmodelsdk/dist/sdk/internal/...` should no longer be needed. |
111
111
| Minor | Private members (starting with an underscore `_`) were not available in the docs but were available in the public typings and therefore in the IDEs. This has been fixed. It should never be necessary to access these members. However, if you did access them you now need to access the object to `any` before the typechecker allows you to access these members. The method `allProperties()` is now available on all structures for reflection purposes. |
Copy file name to clipboardExpand all lines: content/en/docs/studio8/collaboration/collaboration-buzz.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ You will be automatically taken to the Developer Portal. For more information on
47
47
48
48
You can create a feedback item via the **Buzz** tab. Feedback items allow you to submit ideas, questions, or issues on the app, and let your team work on them in the Developer Portal.
49
49
50
-
In a thread in Studio Buzz, you and your team may conclude that the subject discussed needs more thorough refinement or needs to be postponed to be picked up in future sprints. In that case, a feedback item is a useful way to bring the item under attention of the product owner in the team. From there it can evolve into a story and be planned for a sprint. For more information on feedback items, see [Feedback Management](/developerportal/collaborate/feedback/), especially the [Adding a Feedback Item to Your Backlog](/developerportal/collaborate/feedback/#adding) section.
50
+
In a thread in Studio Buzz, you and your team may conclude that the subject discussed needs more thorough refinement or needs to be postponed to be picked up in future Sprints. In that case, a feedback item is a useful way to bring the item under attention of the product owner in the team. From there it can evolve into a story and be planned for a Sprint. For more information on feedback items, see [Feedback Management](/developerportal/collaborate/feedback/), especially the [Adding a Feedback Item to Your Backlog](/developerportal/collaborate/feedback/#adding) section.
0 commit comments