Skip to content

Commit af63b57

Browse files
committed
refactor(AccountController): move to ru.mystamps.web.feature.account package.
Addressed to #927 No functional changes.
1 parent dc551b8 commit af63b57

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

src/main/java/ru/mystamps/web/config/ControllersConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
// CheckStyle: ignore AvoidStarImportCheck for next 1 line
2828
import ru.mystamps.web.controller.*; // NOPMD: UnusedImports
29+
import ru.mystamps.web.feature.account.AccountController;
2930
import ru.mystamps.web.feature.category.CategoryConfig;
3031
import ru.mystamps.web.feature.category.CategoryService;
3132
import ru.mystamps.web.feature.collection.CollectionConfig;

src/main/java/ru/mystamps/web/controller/AccountController.java renamed to src/main/java/ru/mystamps/web/feature/account/AccountController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* along with this program; if not, write to the Free Software
1616
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1717
*/
18-
package ru.mystamps.web.controller;
18+
package ru.mystamps.web.feature.account;
1919

2020
import java.util.Locale;
2121

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* User account (registration and activation).
3+
*/
4+
package ru.mystamps.web.feature.account;

0 commit comments

Comments
 (0)