-
Notifications
You must be signed in to change notification settings - Fork 25
[DAS 373] - Added templateId to project model #236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
[DAS 373] - Added templateId to project model #236
Conversation
Co-authored-by: Copilot <[email protected]>
Keep Main branch updated with development
Update Changelog
Add `Project.TemplateId` property to ACC Project.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds support for tracking the template ID used to create a project by introducing a TemplateId property to the Project model and adding corresponding test methods to verify project retrieval functionality.
- Added
TemplateIdproperty to the Project model to track which project template was used during creation - Introduced
TestGetProjectAsyncandTestGetProjectsAsynctest methods to validate project retrieval operations
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| construction/accountadmin/source/Model/Project.gen.cs | Added nullable TemplateId string property with XML documentation |
| construction/accountadmin/test/TestAccountAdminApi.cs | Added project_id environment variable and two new test methods for project retrieval |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| public int? MemberCount { get; set; } | ||
|
|
||
| /// <summary> | ||
| ///The ID of the project that was used as a template to create this project. |
Copilot
AI
Dec 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after the triple slashes in the XML documentation summary. Should be '/// The ID' instead of '///The ID'.
| ///The ID of the project that was used as a template to create this project. | |
| /// The ID of the project that was used as a template to create this project. |
| ///The ID of the project that was used as a template to create this project. | ||
| /// </summary> | ||
| /// <value> | ||
| ///The ID of the project that was used as a template to create this project. |
Copilot
AI
Dec 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after the triple slashes in the XML documentation value tag. Should be '/// The ID' instead of '///The ID'.
| ///The ID of the project that was used as a template to create this project. | |
| /// The ID of the project that was used as a template to create this project. |
No description provided.