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

mongodb / mongodb-atlas-cli / 25848964073

14 May 2026 07:59AM UTC coverage: 22.479% (-41.3%) from 63.771%
25848964073

push

github

web-flow
build(deps): bump test-summary/action from 2.4 to 2.6 (#4576)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

8987 of 39979 relevant lines covered (22.48%)

0.25 hits per line

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

0.0
/internal/cli/users/users.go
1
// Copyright 2020 MongoDB Inc
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//      http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15
package users
16

17
import (
18
        "github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli"
19
        "github.com/spf13/cobra"
20
)
21

22
func Builder() *cobra.Command {
×
23
        description := "Create and manage your Atlas users."
×
24

×
25
        const use = "users"
×
26
        cmd := &cobra.Command{
×
27
                Use:     use,
×
28
                Short:   "Manage your Atlas users.",
×
29
                Long:    description,
×
30
                Aliases: cli.GenerateAliases(use),
×
31
        }
×
32

×
33
        cmd.AddCommand(
×
34
                InviteBuilder(),
×
35
                DescribeBuilder(),
×
36
        )
×
37

×
38
        return cmd
×
39
}
×
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