Skip to content

Commit 3b026cd

Browse files
committed
Features: mention page in description and group by page.
No functional changes.
1 parent f241427 commit 3b026cd

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

src/main/java/ru/mystamps/web/support/togglz/Features.java

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -24,57 +24,57 @@
2424

2525
public enum Features implements Feature {
2626

27-
@Label("Send mail with activation key to user")
28-
@EnabledByDefault
29-
SEND_ACTIVATION_MAIL,
30-
31-
@Label("Show list of recently added series on index page")
27+
@Label("/site/index: show list of recently added series")
3228
@EnabledByDefault
3329
SHOW_RECENT_SERIES_ON_INDEX_PAGE,
3430

35-
@Label("Show list of recently created collections on index page")
31+
@Label("/site/index: show list of recently created collections")
3632
@EnabledByDefault
3733
SHOW_RECENT_COLLECTIONS_ON_INDEX_PAGE,
3834

39-
@Label("Show search panel on index page")
35+
@Label("/site/index: show search panel")
4036
@EnabledByDefault
4137
SHOW_SEARCH_PANEL_ON_INDEX_PAGE,
4238

43-
@Label("View site events")
44-
@EnabledByDefault
45-
VIEW_SITE_EVENTS,
46-
47-
@Label("Show statistics of collection on collection page")
39+
@Label("/site/index: show link to list of categories")
4840
@EnabledByDefault
49-
SHOW_COLLECTION_STATISTICS,
41+
LIST_CATEGORIES,
5042

51-
@Label("Show charts on collection page")
43+
@Label("/site/index: show link to list of countries")
5244
@EnabledByDefault
53-
SHOW_COLLECTION_CHARTS,
45+
LIST_COUNTRIES,
5446

55-
@Label("Possibility to user to add series to collection")
47+
@Label("/series/{id}: possibility to user to add series to collection")
5648
@EnabledByDefault
5749
ADD_SERIES_TO_COLLECTION,
5850

59-
@Label("Possibility of user to add additional images to series")
51+
@Label("/series/{id}: possibility of user to add additional images to series")
6052
@EnabledByDefault
6153
ADD_ADDITIONAL_IMAGES_TO_SERIES,
6254

63-
@Label("Show link to list of categories on index page")
55+
@Label("/series/{id}: show series purchases and sales")
6456
@EnabledByDefault
65-
LIST_CATEGORIES,
57+
SHOW_PURCHASES_AND_SALES,
6658

67-
@Label("Show link to list of countries on index page")
59+
@Label("/series/{id}: possibility of user to add series purchases and sales")
6860
@EnabledByDefault
69-
LIST_COUNTRIES,
61+
ADD_PURCHASES_AND_SALES,
7062

71-
@Label("Show series purchases and sales on series info page")
63+
@Label("/collection/{slug}: show statistics of collection")
7264
@EnabledByDefault
73-
SHOW_PURCHASES_AND_SALES,
65+
SHOW_COLLECTION_STATISTICS,
7466

75-
@Label("/series/{id}: possibility of user to add series purchases and sales")
67+
@Label("/collection/{slug}: show charts on collection page")
68+
@EnabledByDefault
69+
SHOW_COLLECTION_CHARTS,
70+
71+
@Label("Send mail with activation key to user")
72+
@EnabledByDefault
73+
SEND_ACTIVATION_MAIL,
74+
75+
@Label("View site events")
7676
@EnabledByDefault
77-
ADD_PURCHASES_AND_SALES;
77+
VIEW_SITE_EVENTS;
7878

7979
public boolean isActive() {
8080
return FeatureContext.getFeatureManager().isActive(this);

0 commit comments

Comments
 (0)