-
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.
So much stuff worked on, for this PR
- Loading branch information
Daniel Villavicencio
authored and
Daniel Villavicencio
committed
Mar 7, 2024
1 parent
dad2ad7
commit 59cc1ae
Showing
48 changed files
with
367 additions
and
715 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
38 changes: 0 additions & 38 deletions
38
src/main/java/com/danielvm/destiny2bot/controller/InsertUserController.java
This file was deleted.
Oops, something went wrong.
82 changes: 0 additions & 82 deletions
82
src/main/java/com/danielvm/destiny2bot/controller/InteractionsController.java
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
src/main/java/com/danielvm/destiny2bot/dto/destiny/BungieNetMembership.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,21 @@ | ||
package com.danielvm.destiny2bot.dto.destiny; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class BungieNetMembership { | ||
|
||
private String membershipId; | ||
|
||
private String uniqueName; | ||
|
||
private String displayName; | ||
|
||
private Boolean isDeleted; | ||
|
||
private String locale; | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/danielvm/destiny2bot/dto/destiny/BungieUserResponse.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,19 @@ | ||
package com.danielvm.destiny2bot.dto.destiny; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class BungieUserResponse { | ||
|
||
private String membershipId; | ||
|
||
private String uniqueName; | ||
|
||
private Boolean isDeleted; | ||
|
||
private String locale; | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/com/danielvm/destiny2bot/dto/destiny/DestinyMembershipData.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,15 @@ | ||
package com.danielvm.destiny2bot.dto.destiny; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public final class DestinyMembershipData { | ||
|
||
private Integer membershipType; | ||
|
||
private String membershipId; | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/com/danielvm/destiny2bot/dto/destiny/MembershipResponse.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.danielvm.destiny2bot.dto.destiny; | ||
|
||
import java.util.List; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public final class MembershipResponse { | ||
|
||
private List<DestinyMembershipData> destinyMemberships; | ||
|
||
private String primaryMembershipId; | ||
|
||
private BungieNetMembership bungieNetUser; | ||
} |
1 change: 0 additions & 1 deletion
1
src/main/java/com/danielvm/destiny2bot/dto/destiny/UserSearchResult.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
5 changes: 0 additions & 5 deletions
5
src/main/java/com/danielvm/destiny2bot/dto/destiny/membership/DestinyMembershipData.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/com/danielvm/destiny2bot/dto/destiny/membership/MembershipResponse.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/com/danielvm/destiny2bot/dto/destiny/membership/Memberships.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.