-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Move defaultMirkoOrmOptions to shared, to avoid implicit importing the server code by using it. * Fix configuration for idp-console and deletion-console module
- Loading branch information
Showing
64 changed files
with
314 additions
and
329 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-empty-interface | ||
export interface ConsoleWriterConfig {} |
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 +1,2 @@ | ||
export * from './console-writer'; | ||
export { ConsoleWriterModule, ConsoleWriterService } from './console-writer'; | ||
export { ConsoleWriterConfig } from './console-writer.config'; |
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,6 +1,13 @@ | ||
export * from './error.mapper'; | ||
export * from './exchange'; | ||
export * from './rabbitmq.config'; | ||
export { | ||
RabbitMqConfig, | ||
FilesPreviewExchange, | ||
FilesStorageExchange, | ||
MailSendExchange, | ||
AntivirusExchange, | ||
RabbitMqURI, | ||
} from './rabbitmq.config'; | ||
export * from './rabbitmq.module'; | ||
export * from './rpc-message'; | ||
export * from './rpc-message-producer'; |
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,7 +1,11 @@ | ||
import { Configuration } from '@hpi-schul-cloud/commons/lib'; | ||
|
||
// should be move to config interface and added reading on places that use the module | ||
export const FilesPreviewExchange = Configuration.get('FILES_STORAGE__EXCHANGE') as string; | ||
export const FilesStorageExchange = Configuration.get('FILES_STORAGE__EXCHANGE') as string; | ||
export const MailSendExchange = Configuration.get('MAIL_SEND_EXCHANGE') as string; | ||
export const AntivirusExchange = Configuration.get('ANTIVIRUS_EXCHANGE') as string; | ||
export const RabbitMqURI = Configuration.get('RABBITMQ_URI') as string; | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-empty-interface | ||
export interface RabbitMqConfig {} |
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
41 changes: 0 additions & 41 deletions
41
apps/server/src/modules/deletion-console/deletion-client/deletion-client.config.spec.ts
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
apps/server/src/modules/deletion-console/deletion-client/deletion-client.config.ts
This file was deleted.
Oops, something went wrong.
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.