An open API service indexing awesome lists of open source software.

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.

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