forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retrofit work begins, ZulipServices and dependencies.
touch ups reset pointless auto styling fixes Removed line space, fix spelling based on pr. Fixes: nodejs#147 Removed fabricKey, removed extra line Removed line Added some crashlytics logging for potential breadcrumbs on failure. Started working on retrofit implementation. Backup save. Nearly reached completion of modeling responses. Backup. Working through weird bug on formatting for updating pointer realized wrong encoding was being used.
- Loading branch information
Showing
18 changed files
with
696 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
app/src/main/java/com/zulip/android/models/updated/ChatStatusWrapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.zulip.android.models.updated; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* Created by patrykpoborca on 8/25/16. | ||
*/ | ||
|
||
public class ChatStatusWrapper { | ||
|
||
@SerializedName("website") | ||
private UserChatStatus website; | ||
|
||
public UserChatStatus getWebsite() { | ||
return website; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
app/src/main/java/com/zulip/android/models/updated/JenkinsType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.zulip.android.models.updated; | ||
|
||
/** | ||
* Created by patrykpoborca on 8/25/16. | ||
*/ | ||
|
||
public class JenkinsType { | ||
private String source_url; | ||
private String display_url; | ||
|
||
public String getSource_url() { | ||
return source_url; | ||
} | ||
|
||
public String getDisplay_url() { | ||
return display_url; | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
app/src/main/java/com/zulip/android/models/updated/Referrals.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.zulip.android.models.updated; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* Created by patrykpoborca on 8/25/16. | ||
*/ | ||
|
||
public class Referrals { | ||
@SerializedName("granted") | ||
private int granted; | ||
@SerializedName("used") | ||
private int used; | ||
|
||
public int getGranted() { | ||
return granted; | ||
} | ||
|
||
public void setGranted(int granted) { | ||
this.granted = granted; | ||
} | ||
|
||
public int getUsed() { | ||
return used; | ||
} | ||
|
||
public void setUsed(int used) { | ||
this.used = used; | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
app/src/main/java/com/zulip/android/models/updated/UserChatStatus.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package com.zulip.android.models.updated; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* Created by patrykpoborca on 8/25/16. | ||
*/ | ||
|
||
public class UserChatStatus { | ||
|
||
@SerializedName("status") | ||
private String status; | ||
@SerializedName("timestamp") | ||
private int timestamp; | ||
@SerializedName("client") | ||
private String client; | ||
@SerializedName("pushable") | ||
private boolean pushable; | ||
|
||
public String getStatus() { | ||
return status; | ||
} | ||
|
||
public int getTimestamp() { | ||
return timestamp; | ||
} | ||
|
||
public String getClient() { | ||
return client; | ||
} | ||
|
||
public boolean isPushable() { | ||
return pushable; | ||
} | ||
} |
Oops, something went wrong.