1
0
Fork 0
forked from forgejo/forgejo

Merge remote-tracking branch 'forgejo/v1.20/forgejo-moderation' into v1.20/forgejo

This commit is contained in:
Earl Warren 2023-07-17 08:01:23 +02:00
commit 1371196064
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
56 changed files with 1642 additions and 64 deletions

View file

@ -0,0 +1,13 @@
// Copyright 2023 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package structs
import "time"
// BlockedUser represents a blocked user.
type BlockedUser struct {
BlockID int64 `json:"block_id"`
// swagger:strfmt date-time
Created time.Time `json:"created_at"`
}