https://github.com/maxmellon/hanami-de-ohanami
This project is tutorial the hanami of WAF.
https://github.com/maxmellon/hanami-de-ohanami
Last synced: about 1 year ago
JSON representation
This project is tutorial the hanami of WAF.
- Host: GitHub
- URL: https://github.com/maxmellon/hanami-de-ohanami
- Owner: MaxMEllon
- Created: 2017-09-18T07:42:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-20T12:02:05.000Z (over 8 years ago)
- Last Synced: 2025-02-13T17:15:55.707Z (over 1 year ago)
- Language: Ruby
- Size: 72.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hanami-de-ohanami
## About
This application is tutorial the hanami of WAF.
## Doc
### /users/sign_up => Web::users#create
#### request body
```
{
user: [Schema] {
email: [String] サインイン時に利用するメールアドレス
password: [String] サインイン時に利用するパスワード
password_confirmation: [String] パスワード確認用
}
}
```
#### response body
```
{
token: [String] JSON web token
}
```
### /users/sign_in => Web::users#sign_in
#### request body
```
{
user: [Schema] {
email: [String] サインイン時に利用するメールアドレス
password: [String] サインイン時に利用するパスワード
}
}
```
#### response body
```
{
token: [String] JSON web token
}
```
### /users/sign_out => Web::users#sign_out
#### request body
```
{
token: [String] JSON web token
}
```
#### response body
None.
## LICENSE
CC0