Merge pull request #296 from ywk253100/bug_fix_get_member

bug fix: the length should be 0 when initialize a slice
This commit is contained in:
Wenkai Yin 2016-06-01 13:52:07 +08:00
commit 8206ef2dcb

View File

@ -48,7 +48,7 @@ func hasProjectAdminRole(userID int, projectID int64) bool {
//sysadmin has all privileges to all projects
func listRoles(userID int, projectID int64) ([]models.Role, error) {
roles := make([]models.Role, 1)
roles := make([]models.Role, 0, 1)
isSysAdmin, err := dao.IsAdminRole(userID)
if err != nil {
return roles, err