- casbin model文件移到conf下
This commit is contained in:
@@ -21,8 +21,8 @@
|
||||
backup: yes
|
||||
- name: copy conf file to dest
|
||||
copy:
|
||||
src: ../conf/app.conf
|
||||
dest: "{{ deploy_dir }}/conf/app.conf"
|
||||
src: ../conf/
|
||||
dest: "{{ deploy_dir }}/conf/"
|
||||
owner: ubuntu
|
||||
group: ubuntu
|
||||
mode: 0555
|
||||
|
||||
@@ -3,6 +3,7 @@ package api2
|
||||
import (
|
||||
"git.rosy.net.cn/jx-callback/business/authz"
|
||||
"git.rosy.net.cn/jx-callback/business/authz/casbinauth"
|
||||
"git.rosy.net.cn/jx-callback/globals"
|
||||
)
|
||||
|
||||
var (
|
||||
@@ -10,5 +11,10 @@ var (
|
||||
)
|
||||
|
||||
func Init() {
|
||||
RoleMan, _ = casbinauth.New("business/authz/casbinauth/rbac_model.conf")
|
||||
RoleMan2, err := casbinauth.New("conf/rbac_model.conf")
|
||||
if err != nil {
|
||||
globals.SugarLogger.Error(err.Error())
|
||||
} else {
|
||||
RoleMan = RoleMan2
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user