1
1
import authAxios from '@/shared/axios/auth-axios' ;
2
- import { AuthService } from '@/modules/auth/services/auth.service' ;
3
2
import { storeToRefs } from 'pinia' ;
4
3
import { useLfSegmentsStore } from '@/modules/lf/segments/store' ;
5
- import { getSegmentsFromProjectGroup } from '@/utils/segments' ;
6
4
7
5
const getSelectedProjectGroup = ( ) => {
8
6
const lsSegmentsStore = useLfSegmentsStore ( ) ;
@@ -274,7 +272,6 @@ export class MemberService {
274
272
275
273
static async fetchMergeSuggestions ( limit , offset , query ) {
276
274
const segments = [
277
- ...getSegmentsFromProjectGroup ( getSelectedProjectGroup ( ) ) ,
278
275
getSelectedProjectGroup ( ) . id ,
279
276
] ;
280
277
@@ -293,26 +290,30 @@ export class MemberService {
293
290
. then ( ( { data } ) => Promise . resolve ( data ) ) ;
294
291
}
295
292
296
- static async getCustomAttribute ( id , segments ) {
293
+ static async getCustomAttribute ( id ) {
297
294
const response = await authAxios . get (
298
295
`/settings/members/attributes/${ id } ` ,
299
296
{
300
- data : [
301
- segments ,
302
- ] ,
297
+ params : {
298
+ segments : [
299
+ getSelectedProjectGroup ( ) . id ,
300
+ ] ,
301
+ } ,
303
302
} ,
304
303
) ;
305
304
306
305
return response . data ;
307
306
}
308
307
309
- static async fetchCustomAttributes ( segments ) {
308
+ static async fetchCustomAttributes ( ) {
310
309
const response = await authAxios . get (
311
310
'/settings/members/attributes' ,
312
311
{
313
- data : [
314
- segments ,
315
- ] ,
312
+ params : {
313
+ segments : [
314
+ getSelectedProjectGroup ( ) . id ,
315
+ ] ,
316
+ } ,
316
317
} ,
317
318
) ;
318
319
0 commit comments