| commit | ec5d94617611642fac6cd0f2be39f2420155af73 | [log] [tgz] |
|---|---|---|
| author | Dmitrii Filippov <dmfilippov@google.com> | Tue Aug 04 15:33:20 2020 +0200 |
| committer | Dmitrii Filippov <dmfilippov@google.com> | Tue Aug 04 15:49:35 2020 +0200 |
| tree | 23cba4ebff3879ec999ebb97a78308d0c0d4d1ab | |
| parent | de0fe8c84fcc2c98216e329b003c9328c709d697 [diff] [blame] |
Add methods to RestApiService interface Change-Id: I7d914359857759a11a128b20f8770afd1cd33d86
diff --git a/polygerrit-ui/app/constants/constants.ts b/polygerrit-ui/app/constants/constants.ts index 32e1bed..00acc05 100644 --- a/polygerrit-ui/app/constants/constants.ts +++ b/polygerrit-ui/app/constants/constants.ts
@@ -146,3 +146,12 @@ FIRST_NAME = 'FIRST_NAME', FULL_NAME = 'FULL_NAME', } + +/** + * @desc The state of the projects + */ +export enum ProjectState { + ACTIVE = 'ACTIVE', + READ_ONLY = 'READ_ONLY', + HIDDEN = 'HIDDEN', +}