File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,10 @@ public class LootLockerEndPoints
44
44
public static EndPointClass getPlayerName = new EndPointClass ( "player/name" , LootLockerHTTPMethod . GET ) ;
45
45
public static EndPointClass setPlayerName = new EndPointClass ( "player/name" , LootLockerHTTPMethod . PATCH ) ;
46
46
public static EndPointClass lookupPlayerNames = new EndPointClass ( "player/lookup/name" , LootLockerHTTPMethod . GET ) ;
47
+ public static EndPointClass getplayerFiles = new EndPointClass ( "player/files" , LootLockerHTTPMethod . GET ) ;
48
+ public static EndPointClass getSingleplayerFile = new EndPointClass ( "player/files/{0}" , LootLockerHTTPMethod . GET ) ;
49
+ public static EndPointClass uploadPlayerFile = new EndPointClass ( "player/files" , LootLockerHTTPMethod . UPLOAD ) ;
50
+ public static EndPointClass deletePlayerFile = new EndPointClass ( "/player/files/{0}" , LootLockerHTTPMethod . DELETE ) ;
47
51
48
52
// Character
49
53
[ Header ( "Character" ) ]
You can’t perform that action at this time.
0 commit comments