1
0

test delete

This commit is contained in:
2023-07-01 18:45:06 +09:00
parent e9516ac4cd
commit 53f275cbb3
5 changed files with 18 additions and 20 deletions

View File

@ -79,7 +79,7 @@ var (
{Name: "ten_post", Type: field.TypeString, Nullable: true},
{Name: "ten_get", Type: field.TypeString, Nullable: true},
{Name: "ten_at", Type: field.TypeTime, Nullable: true},
{Name: "next", Type: field.TypeString, Nullable: true, Default: "20230621"},
{Name: "next", Type: field.TypeString, Nullable: true, Default: "20230701"},
{Name: "group_users", Type: field.TypeInt, Nullable: true},
}
// UsersTable holds the schema information for the "users" table.

View File

@ -170,7 +170,7 @@ func (h *OgentHandler) UpdateCard(ctx context.Context, req *UpdateCardReq, param
// DeleteCard handles DELETE /cards/{id} requests.
func (h *OgentHandler) DeleteCard(ctx context.Context, params DeleteCardParams) (DeleteCardRes, error) {
err := h.client.Card.DeleteOneID(0).Exec(ctx)
err := h.client.Card.DeleteOneID(params.ID).Exec(ctx)
if err != nil {
switch {
case ent.IsNotFound(err):
@ -711,7 +711,7 @@ func (h *OgentHandler) UpdateUser(ctx context.Context, req *UpdateUserReq, param
// DeleteUser handles DELETE /users/{id} requests.
func (h *OgentHandler) DeleteUser(ctx context.Context, params DeleteUserParams) (DeleteUserRes, error) {
err := h.client.User.DeleteOneID(0).Exec(ctx)
err := h.client.User.DeleteOneID(params.ID).Exec(ctx)
if err != nil {
switch {
case ent.IsNotFound(err):

View File

@ -831,7 +831,6 @@
}
},
"required": [
"username",
"password"
]
}
@ -967,6 +966,9 @@
"schema": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"did": {
"type": "string"
},
@ -1403,8 +1405,7 @@
}
},
"required": [
"id",
"username"
"id"
]
},
"Group": {
@ -1572,8 +1573,7 @@
}
},
"required": [
"id",
"username"
"id"
]
},
"User": {
@ -1669,7 +1669,6 @@
},
"required": [
"id",
"username",
"password"
]
},
@ -1753,8 +1752,7 @@
}
},
"required": [
"id",
"username"
"id"
]
},
"UserList": {
@ -1837,8 +1835,7 @@
}
},
"required": [
"id",
"username"
"id"
]
},
"UserRead": {
@ -1921,8 +1918,7 @@
}
},
"required": [
"id",
"username"
"id"
]
},
"UserUpdate": {
@ -2005,8 +2001,7 @@
}
},
"required": [
"id",
"username"
"id"
]
},
"User_CardList": {