You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
546 B
21 lines
546 B
import { defHttp } from '/@/utils/http/axios';
|
|
import { Group, GroupPagedResult, GroupSearchRequest } from './model/groupModel';
|
|
import { format } from '/@/utils/strings';
|
|
|
|
enum Api {
|
|
Search = '/api/im/groups/search',
|
|
GetById = '/api/im/groups/{groupId}',
|
|
}
|
|
|
|
export const search = (input: GroupSearchRequest) => {
|
|
return defHttp.get<GroupPagedResult>({
|
|
url: Api.Search,
|
|
params: input,
|
|
});
|
|
};
|
|
|
|
export const getById = (groupId: string) => {
|
|
return defHttp.get<Group>({
|
|
url: format(Api.GetById, { groupId: groupId }),
|
|
});
|
|
};
|
|
|