Skip to content

Commit

Permalink
Api: πŸ› object-key의 depth μˆ˜μ •μ„ μœ„ν•œ ν…œν”Œλ¦Ώ μˆ˜μ • (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinlee1703 authored Jun 2, 2024
1 parent 8379b0e commit dc75a33
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

@RequiredArgsConstructor
public enum ObjectKeyType {
PROFILE("1", "PROFILE", "/delete/profile/{userId}/{uuid}_{timestamp}.{ext}"),
FEED("2", "FEED", "/delete/feed/{feed_id}/{uuid}_{timestamp}.{ext}"),
CHATROOM_PROFILE("3", "CHATROOM_PROFILE", "/delete/chatroom/{chatroom_id}/{uuid}_{timestamp}.{ext}"),
CHAT("4", "CHAT", "/delete/chatroom/{chatroom_id}/chat/{chat_id}/{uuid}_{timestamp}.{ext}"),
CHAT_PROFILE("5", "CHAT_PROFILE", "/delete/chatroom/{chatroom_id}/chat_profile/<user_id>/{uuid}_{timestamp}.{ext}");
PROFILE("1", "PROFILE", "delete/profile/{userId}/{uuid}_{timestamp}.{ext}"),
FEED("2", "FEED", "delete/feed/{feed_id}/{uuid}_{timestamp}.{ext}"),
CHATROOM_PROFILE("3", "CHATROOM_PROFILE", "delete/chatroom/{chatroom_id}/{uuid}_{timestamp}.{ext}"),
CHAT("4", "CHAT", "delete/chatroom/{chatroom_id}/chat/{chat_id}/{uuid}_{timestamp}.{ext}"),
CHAT_PROFILE("5", "CHAT_PROFILE", "delete/chatroom/{chatroom_id}/chat_profile/<user_id>/{uuid}_{timestamp}.{ext}");

private final String code;
private final String type;
Expand Down

0 comments on commit dc75a33

Please sign in to comment.