Profile edits for display name and bio are working. Avatar and header image picking are in but not uploaded.
This commit is contained in:
parent
e15f1cfcab
commit
18e40855ad
5 changed files with 132 additions and 9 deletions
|
|
@ -0,0 +1,17 @@
|
|||
package com.keylesspalace.tusky.entity;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class Profile {
|
||||
@SerializedName("display_name")
|
||||
public String displayName;
|
||||
|
||||
@SerializedName("note")
|
||||
public String note;
|
||||
|
||||
@SerializedName("avatar")
|
||||
public String avatar;
|
||||
|
||||
@SerializedName("header")
|
||||
public String header;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue