Getting your votes on a user details page.

pull/722/head
Dessalines 5 years ago
parent 746362f9ef
commit 8e0cc3498e

@ -323,6 +323,7 @@ pub struct GetUserDetails {
limit: Option<i64>,
community_id: Option<i32>,
saved_only: bool,
auth: Option<String>,
}
#[derive(Serialize, Deserialize)]
@ -2069,6 +2070,19 @@ impl Perform for GetUserDetails {
let conn = establish_connection();
let user_id: Option<i32> = match &self.auth {
Some(auth) => {
match Claims::decode(&auth) {
Ok(claims) => {
let user_id = claims.claims.id;
Some(user_id)
}
Err(_e) => None
}
}
None => None
};
//TODO add save
let sort = SortType::from_str(&self.sort)?;
@ -2099,7 +2113,7 @@ impl Perform for GetUserDetails {
self.community_id,
Some(user_details_id),
None,
None,
user_id,
self.saved_only,
false,
self.page,
@ -2121,7 +2135,7 @@ impl Perform for GetUserDetails {
None,
Some(user_details_id),
None,
None,
user_id,
self.saved_only,
self.page,
self.limit)?

@ -147,6 +147,7 @@ export class WebSocketService {
}
public getUserDetails(form: GetUserDetailsForm) {
this.setAuth(form, false);
this.subject.next(this.wsSendWrapper(UserOperation.GetUserDetails, form));
}

Loading…
Cancel
Save