Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLAN6-155 | coboardInit task updated #98

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Thumbs.db

*.jar
/knotx/conf/jwt.conf
/knotx/conf/admins.conf
/mnt/admins.conf
/mnt/*.json
/mnt/*.backup

Expand Down
2 changes: 1 addition & 1 deletion gradle/init.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
val configsToCopy = mapOf(
"config.json" to "/mnt",
"endpoints.json" to "/mnt",
"admins.conf" to "/knotx/conf",
"admins.conf" to "/mnt",
"jwt.conf" to "/knotx/conf"
)

Expand Down
2 changes: 1 addition & 1 deletion knotx/conf/routes/operations.conf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ routingOperations = ${routingOperations} [
name = login-handler
config {
include required(classpath("jwt.conf"))
include required(classpath("admins.conf"))
include required(classpath("data/admins.conf"))
wrongUserMsg = "Please, enter correct Username"
wrongPassMsg = "Please, enter valid Password"
}
Expand Down