Skip to content

Commit

Permalink
sort tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Dec 28, 2023
1 parent e9c7b47 commit 52b2d6a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,12 @@ object LayersTest {
type DefaultTestEnvironmentWithoutSipi = LayersLive.DspEnvironmentLive with FusekiTestContainer with TestClientService
type DefaultTestEnvironmentWithSipi = DefaultTestEnvironmentWithoutSipi with SipiTestContainer

type CommonR0 = ActorSystem with AppConfigurations with SipiService with JwtService with StringFormatter
type CommonR0 = ActorSystem with AppConfigurations with JwtService with SipiService with StringFormatter
type CommonR =
ApiRoutes
with AppRouter
with Authenticator
with AuthorizationRestService
with CacheService
with CacheServiceRequestMessageHandler
with CardinalityHandler
Expand All @@ -98,6 +99,7 @@ object LayersTest {
with MessageRelay
with OntologyCache
with OntologyHelpers
with OntologyInferencer
with OntologyRepo
with OntologyResponderV2
with PermissionUtilADM
Expand All @@ -114,12 +116,10 @@ object LayersTest {
with ResourceUtilV2
with ResourcesResponderV2
with RestCardinalityService
with AuthorizationRestService
with RestResourceInfoService
with SearchApiRoutes
with SearchResponderV2
with SipiResponderADM
with OntologyInferencer
with StandoffResponderV2
with StandoffTagUtilV2
with State
Expand All @@ -135,6 +135,7 @@ object LayersTest {
ApiRoutes.layer,
AppRouter.layer,
AuthenticatorLive.layer,
AuthorizationRestServiceLive.layer,
BaseEndpoints.layer,
CacheServiceInMemImpl.layer,
CacheServiceRequestMessageHandlerLive.layer,
Expand Down Expand Up @@ -186,7 +187,6 @@ object LayersTest {
ResourceUtilV2Live.layer,
ResourcesResponderV2Live.layer,
RestCardinalityServiceLive.layer,
AuthorizationRestServiceLive.layer,
SearchApiRoutes.layer,
SearchResponderV2Live.layer,
SipiResponderADMLive.layer,
Expand Down
10 changes: 5 additions & 5 deletions webapi/src/main/scala/org/knora/webapi/core/LayersLive.scala
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ object LayersLive {
ActorSystem & ApiRoutes & AppConfigurations & AppRouter & Authenticator & CacheService &
CacheServiceRequestMessageHandler & CardinalityHandler & CardinalityService & ConstructResponseUtilV2 &
ConstructTransformer & GravsearchTypeInspectionRunner & GroupsResponderADM & HttpServer &
IIIFRequestMessageHandler & SipiService & InferenceOptimizationService & IriService & IriConverter & JwtService &
IIIFRequestMessageHandler & InferenceOptimizationService & IriConverter & IriService & JwtService & SipiService &
KnoraProjectRepo & ListsResponderADM & ListsResponderV2 & MessageRelay & OntologyCache & OntologyHelpers &
OntologyRepo & OntologyResponderV2 & PermissionUtilADM & PermissionsResponderADM & PredicateObjectMapper &
OntologyRepo & OntologyResponderV2 & PermissionsResponderADM & PermissionUtilADM & PredicateObjectMapper &
ProjectADMRestService & ProjectADMService & ProjectExportService & ProjectExportStorageService &
ProjectImportService & ProjectsResponderADM & QueryTraverser & RepositoryUpdater & ResourceUtilV2 &
ResourceUtilV2 & ResourcesResponderV2 & RestCardinalityService & AuthorizationRestService & RestResourceInfoService &
SearchApiRoutes & SearchResponderV2 & SipiResponderADM & OntologyInferencer & StandoffResponderV2 & StandoffTagUtilV2 & State &
AuthorizationRestService & ResourcesResponderV2 & ResourceUtilV2 & RestCardinalityService & RestResourceInfoService &
OntologyInferencer & SearchApiRoutes & SearchResponderV2 & SipiResponderADM & StandoffResponderV2 & StandoffTagUtilV2 & State &
StoresResponderADM & StringFormatter & TriplestoreService & UsersResponderADM & ValuesResponderV2

/**
Expand All @@ -91,6 +91,7 @@ object LayersLive {
AppConfig.layer,
AppRouter.layer,
AuthenticatorLive.layer,
AuthorizationRestServiceLive.layer,
BaseEndpoints.layer,
CacheServiceInMemImpl.layer,
CacheServiceRequestMessageHandlerLive.layer,
Expand Down Expand Up @@ -143,7 +144,6 @@ object LayersLive {
ResourceUtilV2Live.layer,
ResourcesResponderV2Live.layer,
RestCardinalityServiceLive.layer,
AuthorizationRestServiceLive.layer,
RestResourceInfoServiceLive.layer,
SearchApiRoutes.layer,
SearchResponderV2Live.layer,
Expand Down

0 comments on commit 52b2d6a

Please sign in to comment.