-
Notifications
You must be signed in to change notification settings - Fork 0
Release v1.0 #27
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
Release v1.0 #27
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,7 @@ | ||
| using System.Collections.Generic; | ||
| using BBT.Aether.Application.Dtos; | ||
| using BBT.Aether.Domain.Repositories; | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file is missing a using BBT.Aether; |
||
| namespace BBT.Aether.Domain.Pagination; | ||
| namespace BBT.Aether.AspNetCore.Pagination; | ||
|
|
||
| /// <summary> | ||
| /// Generates HATEOAS pagination links for API responses. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,9 @@ | |
| using System.Collections.Generic; | ||
| using System.Text; | ||
| using BBT.Aether.Application.Dtos; | ||
| using BBT.Aether.Domain.Repositories; | ||
| using Microsoft.AspNetCore.Http; | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file is missing a using BBT.Aether; |
||
| namespace BBT.Aether.Domain.Pagination; | ||
| namespace BBT.Aether.AspNetCore.Pagination; | ||
|
|
||
| /// <summary> | ||
| /// Generates HATEOAS pagination links using the current HTTP request context. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace BBT.Aether.Domain.Repositories; | ||
| namespace BBT.Aether; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The namespace namespace BBT.Aether.Pagination; |
||
|
|
||
| /// <summary> | ||
| /// Represents a paged list optimized for HATEOAS responses. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace BBT.Aether.Domain.Repositories; | ||
| namespace BBT.Aether; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The namespace namespace BBT.Aether.Pagination; |
||
|
|
||
| /// <summary> | ||
| /// Represents a paged list of items. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| namespace BBT.Aether.Application.Dtos; | ||
| namespace BBT.Aether; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The namespace namespace BBT.Aether.Pagination; |
||
|
|
||
| /// <summary> | ||
| /// HATEOAS pagination links for API responses. | ||
|
|
||
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.
The
using BBT.Aether.Domain;statement is incorrect for resolving thePagedList<T>type, which is used on line 77.PagedList<T>has been moved to a new namespace as part of this refactoring. Please update this to the correct namespace. Based on other changes, this should beBBT.Aether, or preferablyBBT.Aether.Paginationif you adopt the suggestion to align namespaces with folder structure.