-
Notifications
You must be signed in to change notification settings - Fork 0
Sprint 7: Blazor Admin Portal Features (6 Jan - 7 Jan 2026) #92
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
42b044f
docs: update roadmap for Sprint 7 start
ececf2b
feat(admin): add Create Provider dialog
cd2be7f
feat(admin): complete Provider CRUD operations
9cd3688
docs: update Sprint 7 progress - Provider CRUD complete
e033488
feat(admin): implement Documents management feature
5e117c3
docs: update Sprint 7 progress - Documents complete (2/6 features)
bd0c46b
feat(admin): implement Service Catalogs CRUD (Categories + Services)
3317ace
feat(admin): implement Geographic Restrictions - AllowedCities UI
0e0d0d8
feat(admin): implement Dashboard Charts with MudBlazor
2a08284
test(admin): increase bUnit test coverage to 30 tests
2b5c8fb
docs: update roadmap - Sprint 7 completed
d611ab8
feat: improve type safety, validation, and error handling across Admi…
eff47d9
refactor: improve DTO semantics and UX consistency
7abe713
fix: implement IDisposable correctly in Dashboard component
a28c4ab
fix: correct build errors from CI/CD pipeline
d76b275
refactor: implement code review feedback for UX and error handling
b0e12e5
fix: update service Description in reducer and improve code quality
4b2920e
fix: correct build errors from previous commits
c76d157
fix: ensure test isolation in HangfireAuthorizationFilterTests
080556f
fix: remove literal backtick-n sequences from test file
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...d/MeAjudaAi.Shared.Contracts/Contracts/Modules/Providers/DTOs/CreateProviderRequestDto.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| namespace MeAjudaAi.Shared.Contracts.Modules.Providers.DTOs; | ||
|
|
||
| /// <summary> | ||
| /// Request DTO para criação de provider. | ||
| /// Usado pelo Admin Portal para adicionar novos providers ao sistema. | ||
| /// </summary> | ||
| public sealed record CreateProviderRequestDto( | ||
| string Name, | ||
| int Type, | ||
| BusinessProfileDto BusinessProfile, | ||
| string? Document = null); | ||
|
|
||
| /// <summary> | ||
| /// DTO para perfil de negócio do provider. | ||
| /// </summary> | ||
| public sealed record BusinessProfileDto( | ||
| string LegalName, | ||
| string? FantasyName, | ||
| string? Description, | ||
| ContactInfoDto ContactInfo, | ||
| PrimaryAddressDto PrimaryAddress); | ||
|
|
||
| /// <summary> | ||
| /// DTO para informações de contato. | ||
| /// </summary> | ||
| public sealed record ContactInfoDto( | ||
| string Email, | ||
| string? PhoneNumber, | ||
| string? Website); | ||
|
|
||
| /// <summary> | ||
| /// DTO para endereço primário. | ||
| /// </summary> | ||
| public sealed record PrimaryAddressDto( | ||
| string Street, | ||
| string? Number, | ||
| string? Complement, | ||
| string? Neighborhood, | ||
| string City, | ||
| string State, | ||
| string ZipCode, | ||
| string Country); |
41 changes: 41 additions & 0 deletions
41
...d/MeAjudaAi.Shared.Contracts/Contracts/Modules/Providers/DTOs/UpdateProviderRequestDto.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| namespace MeAjudaAi.Shared.Contracts.Modules.Providers.DTOs; | ||
|
|
||
| /// <summary> | ||
| /// Request DTO para atualização de provider. | ||
| /// Usado pelo Admin Portal para modificar dados de providers existentes. | ||
| /// </summary> | ||
| public sealed record UpdateProviderRequestDto( | ||
| string? Name = null, | ||
| string? Phone = null, | ||
| BusinessProfileUpdateDto? BusinessProfile = null); | ||
|
|
||
| /// <summary> | ||
| /// DTO para atualização de perfil de negócio. | ||
| /// </summary> | ||
| public sealed record BusinessProfileUpdateDto( | ||
| string? LegalName = null, | ||
| string? FantasyName = null, | ||
| string? Description = null, | ||
| ContactInfoUpdateDto? ContactInfo = null, | ||
| PrimaryAddressUpdateDto? PrimaryAddress = null); | ||
|
|
||
| /// <summary> | ||
| /// DTO para atualização de informações de contato. | ||
| /// </summary> | ||
| public sealed record ContactInfoUpdateDto( | ||
| string? Email = null, | ||
| string? PhoneNumber = null, | ||
| string? Website = null); | ||
|
|
||
| /// <summary> | ||
| /// DTO para atualização de endereço. | ||
| /// </summary> | ||
| public sealed record PrimaryAddressUpdateDto( | ||
| string? Street = null, | ||
| string? Number = null, | ||
| string? Complement = null, | ||
| string? Neighborhood = null, | ||
| string? City = null, | ||
| string? State = null, | ||
| string? ZipCode = null, | ||
| string? Country = null); |
8 changes: 8 additions & 0 deletions
8
...i.Shared.Contracts/Contracts/Modules/Providers/DTOs/UpdateVerificationStatusRequestDto.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| namespace MeAjudaAi.Shared.Contracts.Modules.Providers.DTOs; | ||
|
|
||
| /// <summary> | ||
| /// Request DTO para atualização do status de verificação de um provider. | ||
| /// </summary> | ||
| public sealed record UpdateVerificationStatusRequestDto( | ||
| string VerificationStatus, | ||
| string? Reason = null); |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.