Skip to content

Commit

Permalink
chore: Update routes to include lazy loading for images
Browse files Browse the repository at this point in the history
  • Loading branch information
tako0614 committed Jul 28, 2024
1 parent 17890e2 commit ac959fd
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 17 deletions.
24 changes: 9 additions & 15 deletions markdowns/takos/v2/client/sessions/registers/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,23 @@ POST /takos/v2/client/sessions/registers/auth

### Parameters

| name | type | description | required |
| ------------ | ------ | -------------- | -------- |
| userName | string | ユーザーネーム | true |
| password | string | パスワード | true |
| email | string | email | true |
| recaptcha | string | reCAPCHA token | true |
| recapchakind | string | v2 or v3 | true |

*1はいずれか一つは必須
| name | type | description | required |
| ------------ | ------ | ----------------- | -------- |
| userName | string | ユーザーネーム | true |
| password | string | パスワード | true |
| email | string | email | true |
| recaptcha | string | reCAPCHA token | true |
| recapchakind | string | v2 or v3 | true |
| sessionid | string | 登録用のsessionid | true |

### Response

```
headers: {
"Content-Type": "application/json",
"Set-Cookie": `sessionid=${sessionid}; Path=/; Max-Age=2592000;`,
},
body: {
status: true
}
```

## descripton

ログインしていない場合、sessionidを発行します
登録を完了します
27 changes: 27 additions & 0 deletions markdowns/takos/v2/client/sessions/registers/check.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
### Endpoint

```
POST /takos/v2/client/sessions/registers/auth
```

### Parameters

| name | type | description | required |
| ------------ | ------ | ----------------- | -------- |
| code | string | 認証コード | true |
| email | string | email | true |
| recaptcha | string | reCAPCHA token | true |
| recapchakind | string | v2 or v3 | true |
| sessionid | string | 登録用のsessionid | true |

### Response

```
body: {
status: true
}
```

## descripton

メールアドレスを認証します
27 changes: 27 additions & 0 deletions markdowns/takos/v2/client/sessions/registers/setup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
### Endpoint

```
POST /takos/v2/client/sessions/registers/auth
```

### Parameters

| name | type | description | required |
| ------------ | ------ | ----------------- | -------- |
| code | string | 認証コード | true |
| email | string | email | true |
| recaptcha | string | reCAPCHA token | true |
| recapchakind | string | v2 or v3 | true |
| sessionid | string | 登録用のsessionid | true |

### Response

```
body: {
status: true
}
```

## descripton

メールアドレスを認証します
4 changes: 2 additions & 2 deletions static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
}

.folder:before {
content: "";
content: "";
display: inline-block;
margin-right: 6px;
}

.folder.open:before {
content: "";
content: "";
}
.folder2,
.file2 {
Expand Down

0 comments on commit ac959fd

Please sign in to comment.