1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use lemmy_db_schema::newtypes::{CommunityId, PostId};
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug)]
pub struct UserJoin {
  pub auth: String,
}

#[derive(Serialize, Deserialize, Clone)]
pub struct UserJoinResponse {
  pub joined: bool,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct CommunityJoin {
  pub community_id: CommunityId,
}

#[derive(Serialize, Deserialize, Clone)]
pub struct CommunityJoinResponse {
  pub joined: bool,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct ModJoin {
  pub community_id: CommunityId,
}

#[derive(Serialize, Deserialize, Clone)]
pub struct ModJoinResponse {
  pub joined: bool,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct PostJoin {
  pub post_id: PostId,
}

#[derive(Serialize, Deserialize, Clone)]
pub struct PostJoinResponse {
  pub joined: bool,
}