Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package com.base.Http.Server.Responses.ChannelMember; |
||
7 | public class DeleteChannelMemberResponse extends BaseResponse { |
||
8 | |||
9 | public static String VALID_TEAM_SLUG = "twitter"; |
||
10 | public static String VALID_CHANNEL_SLUG = "design"; |
||
11 | public static String VALID_DELETED_TEAM_SLUG = "twitter-1"; |
||
12 | public static String VALID_USER_ID = "1"; |
||
13 | |||
14 | @Override |
||
15 | public Response getResponse(Request request, Response response) { |
||
16 | return response.setStatusCode(200) |
||
17 | .setBody(""); |
||
18 | } |
||
20 |