Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
FIX: Reordering namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
fmattioli committed Jul 6, 2024
1 parent 30d40e2 commit dfa8ea1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
using System.IdentityModel.Tokens.Jwt;
using Microsoft.IdentityModel.Tokens;
using Microsoft.AspNetCore.Http;
using Feijuca.Keycloak.Services;
using Feijuca.Keycloak.Services.Models;
using Feijuca.Keycloak.MultiTenancy.Services;
using Feijuca.Keycloak.MultiTenancy.Services.Models;

namespace Feijuca.Keycloak.Extensions
namespace Feijuca.Keycloak.MultiTenancy.Extensions
{
public static class AuthExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using Microsoft.AspNetCore.Http;

using System.IdentityModel.Tokens.Jwt;

namespace Feijuca.Keycloak.Services
namespace Feijuca.Keycloak.MultiTenancy.Services
{
public class AuthService(IHttpContextAccessor httpContextAccessor, JwtSecurityTokenHandler jwtSecurityTokenHandler) : IAuthService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Feijuca.Keycloak.Services
namespace Feijuca.Keycloak.MultiTenancy.Services
{
public interface IAuthService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Feijuca.Keycloak.Services.Models
namespace Feijuca.Keycloak.MultiTenancy.Services.Models
{
public record AuthSettings(string? ClientId, string? Resource, string? AuthServerUrl, string? PolicyName, IEnumerable<string>? Roles, IEnumerable<string>? Scopes)
{
Expand Down

0 comments on commit dfa8ea1

Please sign in to comment.