• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Freegle / iznik-nuxt3 / c116036c-55fb-4d4e-a732-06fbe0906fc1

13 Oct 2025 12:31PM UTC coverage: 34.681% (-11.0%) from 45.694%
c116036c-55fb-4d4e-a732-06fbe0906fc1

push

circleci

edwh
Migrate logo API call from v1 to v2

1053 of 3928 branches covered (26.81%)

Branch coverage included in aggregate %.

0 of 1 new or added line in 1 file covered. (0.0%)

723 existing lines in 55 files now uncovered.

2722 of 6957 relevant lines covered (39.13%)

38.05 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

23.08
/api/GroupAPI.js
1
import BaseAPI from '@/api/BaseAPI'
2

3
export default class GroupAPI extends BaseAPI {
6✔
4
  async list(params) {
UNCOV
5
    return await this.$getv2('/group', params)
×
6
  }
7

8
  async listMT(params) {
9
    const { groups } = await this.$get('/groups', params)
×
10
    return groups
×
11
  }
12

13
  async fetchGroupMT(id, polygon, showmods, sponsors, tnkey, log) {
14
    const { group } = await this.$get(
×
15
      '/group',
16
      { id, polygon, showmods, sponsors, tnkey },
17
      log
18
    )
19
    return group
×
20
  }
21

22
  async fetch(id, log) {
23
    const group = await this.$getv2('/group/' + id, {}, log)
3✔
24

25
    return group
3✔
26
  }
27

28
  async fetchMessagesForGroup(id) {
UNCOV
29
    return await this.$getv2('/group/' + id + '/message')
×
30
  }
31

32
  async patch(params) {
33
    await this.$patch('/group', params)
×
34
  }
35

36
  async add(params) {
37
    const { id } = await this.$post('/group', params)
×
38
    return id
×
39
  }
40

41
  async removeFacebook(groupid, uid) {
42
    await this.$post('/group', {
×
43
      id: groupid,
44
      uid,
45
      action: 'RemoveFacebook',
46
    })
47
  }
48
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc