You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let cid = parse_uuid!(info.collection, collection ID);
16
-
let uid = parse_uuid!(token.oid(), auth token oid);
17
-
let tuid = parse_uuid!(info.user, user ID);
15
+
let cid = parse_uuid!(info.collection,"collection ID");
16
+
let uid = parse_uuid!(token.oid(),"auth token oid");
17
+
let tuid = parse_uuid!(info.user,"user ID");
18
18
19
19
if tuid == uid {
20
20
returnErr(APIError::new(400,"Bad Request","You cannot remove yourself from a collection. Please request that another collection owner performs this for you."))
0 commit comments