mirror of https://github.com/Rekoe/rk_svnadmin
添加账号 权限
parent
8f112f4b21
commit
ca7eb105a3
|
@ -90,18 +90,26 @@ public class ProjectService extends BaseService<Pj> {
|
||||||
pjGr.setDes(gr);
|
pjGr.setDes(gr);
|
||||||
projectGroupService.save(pjGr);
|
projectGroupService.save(pjGr);
|
||||||
}
|
}
|
||||||
|
//
|
||||||
|
String res = this.projectAuthService.formatRes(pj, "/");
|
||||||
|
PjAuth pjAuthDef = new PjAuth();
|
||||||
|
pjAuthDef.setPj(pj.getPj());
|
||||||
|
pjAuthDef.setRes(res);
|
||||||
|
pjAuthDef.setRw("rw");
|
||||||
|
pjAuthDef.setUsr("admin");
|
||||||
|
projectAuthService.saveByUsr(pjAuthDef);
|
||||||
// 增加默认的权限 @see Issue 29
|
// 增加默认的权限 @see Issue 29
|
||||||
PjAuth pjAuth = new PjAuth();
|
PjAuth pjAuth = new PjAuth();
|
||||||
pjAuth.setPj(pj.getPj());
|
pjAuth.setPj(pj.getPj());
|
||||||
pjAuth.setRes(this.projectAuthService.formatRes(pj, "/"));
|
pjAuth.setRes(res);
|
||||||
pjAuth.setRw("rw");
|
pjAuth.setRw("rw");
|
||||||
pjAuth.setGr(Constants.GROUP_MANAGER);
|
pjAuth.setGr(Constants.GROUP_MANAGER);
|
||||||
projectAuthService.saveByGr(pjAuth);
|
projectAuthService.saveByGr(pjAuth);
|
||||||
repositoryService.createDir(pj);
|
|
||||||
} else {
|
} else {
|
||||||
dao().update(pj);
|
dao().update(pj);
|
||||||
}
|
}
|
||||||
svnService.exportConfig(pj.getPj());
|
svnService.exportConfig(pj.getPj());
|
||||||
|
repositoryService.createDir(pj);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue