You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace App\Http\Controllers\Web\HTICWeb;
-
- use App\Http\Controllers\Web\FromKintoneController;
- use App\Transmissions\HTICWeb\Sender;
- use Illuminate\Http\JsonResponse;
- use Illuminate\Http\Request;
-
- class UserRegisterController extends FromKintoneController
- {
-
- use Sender;
-
- public function name(): string
- {
- return "[IC定期連携]利用者情報新規登録";
- }
-
- public function description(): string
- {
- return "[IC定期連携]利用者情報新規登録";
- }
-
-
- public function __construct(protected UserRegisterParam $param)
- {
- parent::__construct();
- }
-
- protected function run(Request $request): JsonResponse
- {
- $param = $this->param;
-
- $res = $this->sendUserCreate($param->toArray());
-
- return $this->successResponse($res->json('data'));
- }
- }
|