| | |
| | | package com.ruoyi.project.system.controller;
|
| | |
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.web.bind.annotation.PostMapping;
|
| | | import org.springframework.web.bind.annotation.RequestBody;
|
| | | import org.springframework.web.bind.annotation.RestController;
|
| | | import com.ruoyi.common.utils.StringUtils;
|
| | | import com.ruoyi.framework.security.RegisterBody;
|
| | | import com.ruoyi.framework.security.service.SysRegisterService;
|
| | | import com.ruoyi.framework.web.controller.BaseController;
|
| | | import com.ruoyi.framework.web.domain.AjaxResult;
|
| | | import com.ruoyi.project.system.service.ISysConfigService;
|
| | | import lombok.AllArgsConstructor;
|
| | | import org.springframework.web.bind.annotation.PostMapping;
|
| | | import org.springframework.web.bind.annotation.RequestBody;
|
| | | import org.springframework.web.bind.annotation.RestController;
|
| | |
|
| | | /**
|
| | | * 注册验证
|
| | |
| | | * @author ruoyi
|
| | | */
|
| | | @RestController
|
| | | public class SysRegisterController extends BaseController
|
| | | {
|
| | | @Autowired
|
| | | @AllArgsConstructor
|
| | | public class SysRegisterController extends BaseController {
|
| | | private SysRegisterService registerService;
|
| | |
|
| | | @Autowired
|
| | | private ISysConfigService configService;
|
| | |
|
| | | @PostMapping("/register")
|
| | | public AjaxResult register(@RequestBody RegisterBody user)
|
| | | {
|
| | | if (!("true".equals(configService.selectConfigByKey("sys.account.registerUser"))))
|
| | | {
|
| | | public AjaxResult register(@RequestBody RegisterBody user) {
|
| | | if (!("true".equals(configService.selectConfigByKey("sys.account.registerUser")))) {
|
| | | return error("当前系统没有开启注册功能!");
|
| | | }
|
| | | String msg = registerService.register(user);
|