31 lines
760 B
Go
31 lines
760 B
Go
package types
|
|
|
|
type UserJoin struct {
|
|
Auth string `json:"auth" url:"auth,omitempty"`
|
|
}
|
|
type UserJoinResponse struct {
|
|
Joined bool `json:"joined" url:"joined,omitempty"`
|
|
LemmyResponse
|
|
}
|
|
type CommunityJoin struct {
|
|
CommunityID int `json:"community_id" url:"community_id,omitempty"`
|
|
}
|
|
type CommunityJoinResponse struct {
|
|
Joined bool `json:"joined" url:"joined,omitempty"`
|
|
LemmyResponse
|
|
}
|
|
type ModJoin struct {
|
|
CommunityID int `json:"community_id" url:"community_id,omitempty"`
|
|
}
|
|
type ModJoinResponse struct {
|
|
Joined bool `json:"joined" url:"joined,omitempty"`
|
|
LemmyResponse
|
|
}
|
|
type PostJoin struct {
|
|
PostID int `json:"post_id" url:"post_id,omitempty"`
|
|
}
|
|
type PostJoinResponse struct {
|
|
Joined bool `json:"joined" url:"joined,omitempty"`
|
|
LemmyResponse
|
|
}
|