Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0bf2269
Move filter-summary outside of details tag. Amend itss styling so tha…
akdalin-hee Jan 17, 2024
3347aa9
Merge pull request #10 from TechnologyEnhancedLearning/RC
binon Jan 18, 2024
a14f520
Run code formatter
akdalin-hee Jan 18, 2024
47a1228
Merge pull request #11 from TechnologyEnhancedLearning/TD-3158-mylear…
akdalin-hee Jan 19, 2024
ccbdc1d
Fix accessibility issues in My Bookmarks section
akdalin-hee Jan 30, 2024
ca92c66
Correct autocomplete references in alignment to HTML best practices
akdalin-hee Jan 30, 2024
c8f5509
Fix learner search page and search results accessibility issues
akdalin-hee Feb 5, 2024
0effa87
TD-3676 Updates OpenAPI branding and links following move to NHS England
kevwhitt-hee Feb 7, 2024
380bbcb
Update AuthStartup.cs
kevwhitt-hee Feb 7, 2024
e0f8585
Update v1.3.0.json
kevwhitt-hee Feb 7, 2024
99c7f3d
TD-3676 Updates copyright company name
kevwhitt-hee Feb 7, 2024
4b79c02
Merge branch 'Develop/Fixes/TD-3676-UpdateOpenAPIBrandingAndLinks' of…
kevwhitt-hee Feb 7, 2024
a228fdc
TD-3676 Updates copyright statements throughout the solution to match…
kevwhitt-hee Feb 7, 2024
cbe7d17
TD-3676 Removes code copyright comments
kevwhitt-hee Feb 8, 2024
3bfae53
TD-3676 Removes copyright rule from StyleCop.json
kevwhitt-hee Feb 8, 2024
dda4cf0
Removes copyright documentation from missed, open unsaved files
kevwhitt-hee Feb 8, 2024
f491ce4
TD-3676 Removes more copyrights from files with no line break
kevwhitt-hee Feb 8, 2024
5d00ab1
Removes further copyright StyleCop rules
kevwhitt-hee Feb 8, 2024
823b348
TD-3676 Removes file header StyleCop rules
kevwhitt-hee Feb 9, 2024
3433b21
Fix learner catalogue pages accessibility issues
akdalin-hee Feb 12, 2024
2cdc42e
Merge pull request #13 from TechnologyEnhancedLearning/TD-3161-learne…
akdalin-hee Feb 13, 2024
86352df
Merge pull request #14 from TechnologyEnhancedLearning/TD-3159-mybook…
akdalin-hee Feb 13, 2024
f12533e
Merge pull request #51 from TechnologyEnhancedLearning/TD-3162-search…
akdalin-hee Feb 13, 2024
bdea594
Merge pull request #109 from TechnologyEnhancedLearning/TD-3163-catal…
akdalin-hee Feb 13, 2024
db7ee41
TD-3546: Azure Log -Threads are mixing synchronous code with asynchro…
Swapnamol Feb 16, 2024
e50af7f
Merge pull request #119 from TechnologyEnhancedLearning/Develop/Fix/L…
Swapnamol Feb 16, 2024
39e031e
Fix learning resources accessibility issues
akdalin-hee Feb 16, 2024
12e78f9
TD-3541- Zip file can be marked as SCORM outdated feature
Swapnamol Feb 19, 2024
3ca8fd1
Merge pull request #121 from TechnologyEnhancedLearning/Develop/Fixes…
Swapnamol Feb 19, 2024
7ea9997
Merge pull request #120 from TechnologyEnhancedLearning/TD-3164-fix-l…
akdalin-hee Feb 21, 2024
c063d29
Merge pull request #60 from TechnologyEnhancedLearning/Develop/Fixes/…
kevwhitt-hee Feb 26, 2024
3132793
changes merged
AnjuJose011 Feb 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="FileUploadSettingsModel.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Configuration
namespace LearningHub.Nhs.AdminUI.Configuration
{
/// <summary>
/// Defines the <see cref="FileUploadSettingsModel" />.
Expand Down
6 changes: 1 addition & 5 deletions AdminUI/LearningHub.Nhs.AdminUI/Configuration/WebSettings.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="WebSettings.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Configuration
namespace LearningHub.Nhs.AdminUI.Configuration
{
using System;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="AuthorisationController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using Microsoft.AspNetCore.Mvc;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="BaseController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Hosting;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="CacheController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System.Threading.Tasks;
using LearningHub.Nhs.AdminUI.Interfaces;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="CatalogueController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
using System.Collections.Generic;
Expand Down
6 changes: 1 addition & 5 deletions AdminUI/LearningHub.Nhs.AdminUI/Controllers/CmsController.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="CmsController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ExternalSystemController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="FileController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System.Threading.Tasks;
using LearningHub.Nhs.AdminUI.Interfaces;
Expand Down
4 changes: 0 additions & 4 deletions AdminUI/LearningHub.Nhs.AdminUI/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
// <copyright file="HomeController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
Expand Down
6 changes: 1 addition & 5 deletions AdminUI/LearningHub.Nhs.AdminUI/Controllers/LogController.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="LogController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="LogoutController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="MediaController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System.Threading.Tasks;
using Azure.Storage.Blobs.Models;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="NotificationsController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ReleaseController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System.Linq;
using System.Threading.Tasks;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ResourceController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ResourceSyncController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System.Threading.Tasks;
using LearningHub.Nhs.AdminUI.Interfaces;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="RoadmapController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="UserController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="UserGroupController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers
namespace LearningHub.Nhs.AdminUI.Controllers
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="BaseApiController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers.Api
namespace LearningHub.Nhs.AdminUI.Controllers.Api
{
using LearningHub.Nhs.Models.Extensions;
using Microsoft.AspNetCore.Mvc;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ContentController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.WebUI.Controllers.Api
namespace LearningHub.Nhs.WebUI.Controllers.Api
{
using System;
using System.Configuration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="HierarchyController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.WebUI.Controllers.Api
namespace LearningHub.Nhs.WebUI.Controllers.Api
{
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="MediaManifestProxyController.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Controllers.Api
namespace LearningHub.Nhs.AdminUI.Controllers.Api
{
using System;
using System.Globalization;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ClaimsPrincipalExtensions.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Extensions
namespace LearningHub.Nhs.AdminUI.Extensions
{
using System;
using System.Security.Claims;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="PagingRequestModelExtensions.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Extensions
namespace LearningHub.Nhs.AdminUI.Extensions
{
using System;
using LearningHub.Nhs.Models.Common.Enums;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="CheckInitialLogonFilter.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Filters
namespace LearningHub.Nhs.AdminUI.Filters
{
using System.Threading.Tasks;
using LearningHub.Nhs.AdminUI.Helpers;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ImportModelStateAttribute.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Filters.PRG
namespace LearningHub.Nhs.AdminUI.Filters.PRG
{
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ModelStateHelpers.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Filters.PRG
namespace LearningHub.Nhs.AdminUI.Filters.PRG
{
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ModelStateTransfer.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Filters.PRG
namespace LearningHub.Nhs.AdminUI.Filters.PRG
{
using Microsoft.AspNetCore.Mvc.Filters;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ModelStateTransferValue.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Filters.PRG
namespace LearningHub.Nhs.AdminUI.Filters.PRG
{
using System.Collections.Generic;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="CookieEventHandler.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Handlers
namespace LearningHub.Nhs.AdminUI.Handlers
{
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authentication;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="LogoutUserManager.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Handlers
namespace LearningHub.Nhs.AdminUI.Handlers
{
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ILearningHubApiFacade.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Helpers
namespace LearningHub.Nhs.AdminUI.Helpers
{
using System.Threading.Tasks;
using LearningHub.Nhs.Models.Common;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="IUserSessionHelper.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Helpers
namespace LearningHub.Nhs.AdminUI.Helpers
{
using System.Threading.Tasks;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="LearningActivityHelper.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Helpers
namespace LearningHub.Nhs.AdminUI.Helpers
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="LearningHubApiFacade.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Helpers
namespace LearningHub.Nhs.AdminUI.Helpers
{
using System;
using System.Net.Http;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="ResourceAccessiblityHelper.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Helpers
namespace LearningHub.Nhs.AdminUI.Helpers
{
using LearningHub.Nhs.Models.Enums;
using Microsoft.AspNetCore.Mvc.Rendering;
Expand Down
6 changes: 1 addition & 5 deletions AdminUI/LearningHub.Nhs.AdminUI/Helpers/UserRoleHelper.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="UserRoleHelper.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Helpers
namespace LearningHub.Nhs.AdminUI.Helpers
{
using Microsoft.AspNetCore.Mvc.Rendering;

Expand Down
6 changes: 1 addition & 5 deletions AdminUI/LearningHub.Nhs.AdminUI/Helpers/UserSessionHelper.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// <copyright file="UserSessionHelper.cs" company="HEE.nhs.uk">
// Copyright (c) HEE.nhs.uk.
// </copyright>

namespace LearningHub.Nhs.AdminUI.Helpers
namespace LearningHub.Nhs.AdminUI.Helpers
{
using System.Threading.Tasks;
using elfhHub.Nhs.Models.Common;
Expand Down
Loading