(workspace string, name storepb.SettingName)
| 145 | } |
| 146 | |
| 147 | func getSettingCacheKey(workspace string, name storepb.SettingName) string { |
| 148 | return fmt.Sprintf("workspaces/%s/settings/%s", workspace, name.String()) |
| 149 | } |
| 150 | |
| 151 | // formatGroupName returns "groups/{email}" if email is set, otherwise "groups/{id}". |
| 152 | // This mirrors utils.FormatGroupName but avoids a circular import. |
no test coverage detected