Skip to content

Commit

Permalink
增加基础数据接口 权限,更细分了.
Browse files Browse the repository at this point in the history
登录时候优化获取角色权限SQL,增加用户租户判断.
  • Loading branch information
vnobo committed Feb 18, 2024
1 parent 1f22873 commit 8309708
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions boot/platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,22 @@ tasks.named("bootBuildImage") {
]
buildWorkspace {
bind {
source = "cache-${rootProject.name}-${project.name}.work"
source = "cache.${rootProject.name}-${project.name}.work"
}
}
buildCache {
bind {
source = "cache-${rootProject.name}-${project.name}.build"
source = "cache.${rootProject.name}-${project.name}.build"
}
}
launchCache {
bind {
source = "cache-${rootProject.name}-${project.name}.launch"
source = "cache.${rootProject.name}-${project.name}.launch"
}
}
publish = true
docker {
host = "tcp://192.168.1.2:2376"
publishRegistry {
username = "${dockerUsername}"
password = "${dockerPassword}"
Expand All @@ -63,7 +64,6 @@ idea {
inheritOutputDirs = false
outputDir = file('muchBetterOutputDir') as File
testOutputDir = file('muchBetterTestOutputDir') as File

}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 8309708

Please sign in to comment.