-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5444 from dfe-analytical-services/EES-5656_Releas…
…e_Series_Tidyup EES-5656 Release series tidy up
- Loading branch information
Showing
21 changed files
with
296 additions
and
431 deletions.
There are no files selected for viewing
This file contains 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
468 changes: 183 additions & 285 deletions
468
...ovUk.Education.ExploreEducationStatistics.Admin.Tests/Services/PublicationServiceTests.cs
Large diffs are not rendered by default.
Oops, something went wrong.
18 changes: 8 additions & 10 deletions
18
src/GovUk.Education.ExploreEducationStatistics.Admin/Requests/ReleaseSeriesItemRequests.cs
This file contains 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 |
---|---|---|
@@ -1,21 +1,19 @@ | ||
#nullable enable | ||
|
||
using System; | ||
|
||
namespace GovUk.Education.ExploreEducationStatistics.Admin.Requests; | ||
|
||
public class ReleaseSeriesLegacyLinkAddRequest | ||
public record ReleaseSeriesLegacyLinkAddRequest | ||
{ | ||
public string Description { get; set; } = string.Empty; | ||
public string Url { get; set; } = string.Empty; | ||
public required string Description { get; init; } | ||
|
||
public required string Url { get; init; } | ||
} | ||
|
||
public class ReleaseSeriesItemUpdateRequest | ||
public record ReleaseSeriesItemUpdateRequest | ||
{ | ||
public Guid Id { get; set; } | ||
public Guid? ReleaseId { get; set; } | ||
public Guid? ReleaseId { get; init; } | ||
|
||
public string? LegacyLinkDescription { get; set; } | ||
public string? LegacyLinkUrl { get; set; } | ||
public string? LegacyLinkDescription { get; init; } | ||
public string? LegacyLinkUrl { get; init; } | ||
} | ||
|
This file contains 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 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 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 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 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 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 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 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 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 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
Oops, something went wrong.