File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/net/luckperms/rest/service Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -101,10 +101,10 @@ public interface GroupService {
101101 @ GET ("/group/{name}/meta" )
102102 Call <Metadata > metadata (@ Path ("name" ) String name );
103103
104- @ GET ("/group/{name}/permissionCheck " )
104+ @ GET ("/group/{name}/permission-check " )
105105 Call <PermissionCheckResult > permissionCheck (@ Path ("name" ) String name , @ Query ("permission" ) String permission );
106106
107- @ POST ("/group/{name}/permissionCheck " )
107+ @ POST ("/group/{name}/permission-check " )
108108 Call <PermissionCheckResult > permissionCheck (@ Path ("name" ) String name , @ Body PermissionCheckRequest req );
109109
110110}
Original file line number Diff line number Diff line change @@ -120,10 +120,10 @@ public interface UserService {
120120 @ GET ("/user/{uniqueId}/meta" )
121121 Call <Metadata > metadata (@ Path ("uniqueId" ) UUID uniqueId );
122122
123- @ GET ("/user/{uniqueId}/permissionCheck " )
123+ @ GET ("/user/{uniqueId}/permission-check " )
124124 Call <PermissionCheckResult > permissionCheck (@ Path ("uniqueId" ) UUID uniqueId , @ Query ("permission" ) String permission );
125125
126- @ POST ("/user/{uniqueId}/permissionCheck " )
126+ @ POST ("/user/{uniqueId}/permission-check " )
127127 Call <PermissionCheckResult > permissionCheck (@ Path ("uniqueId" ) UUID uniqueId , @ Body PermissionCheckRequest req );
128128
129129 @ POST ("/user/{uniqueId}/promote" )
You can’t perform that action at this time.
0 commit comments