Skip to content

Commit 011500f

Browse files
committed
feat(preset): split education based on size
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 parent f359904 commit 011500f

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

lib/public/Config/Lexicon/Preset.php

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
* - **Preset::MEDIUM** - Medium size organisation (> 100 accounts)
1818
* - **Preset::SMALL** - Small size organisation (< 100 accounts)
1919
* - **Preset::SHARED** - Shared hosting
20-
* - **Preset::EDUCATION** - School/University
20+
* - **Preset::UNIVERSITY** - Education, large size
21+
* - **Preset::SCHOOL** - Eduction, small/medium size
2122
* - **Preset::CLUB** - Club/Association
2223
* - **Preset::FAMILY** - Family
2324
* - **Preset::PRIVATE** - Private
@@ -26,15 +27,17 @@
2627
*/
2728
enum Preset: int {
2829
/** @since 32.0.0 */
29-
case LARGE = 8;
30+
case LARGE = 9;
3031
/** @since 32.0.0 */
31-
case MEDIUM = 7;
32+
case MEDIUM = 8;
3233
/** @since 32.0.0 */
33-
case SMALL = 6;
34+
case SMALL = 7;
3435
/** @since 32.0.0 */
35-
case SHARED = 5;
36+
case SHARED = 6;
3637
/** @since 32.0.0 */
37-
case EDUCATION = 4;
38+
case UNIVERSITY = 5;
39+
/** @since 32.0.0 */
40+
case SCHOOL = 4;
3841
/** @since 32.0.0 */
3942
case CLUB = 3;
4043
/** @since 32.0.0 */

0 commit comments

Comments
 (0)