Introduce a self-referential many-to-many relation table so a third party can have child third parties. Each relation is directional (parent to child); both directions can coexist as independent rows. Add a first_level boolean on third_parties (default true) with a filter on the list page that defaults to showing only first-level third parties. Frontend adds a "Third Parties" tab on the detail page where users can link existing third parties or create new ones from the common third party catalog (created as non-first-level). The list page gets a First Level/All toggle filter. Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
49 lines
1.8 KiB
Go
49 lines
1.8 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@getprobo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
package thirdpartymgmt
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"go.probo.inc/probo/pkg/cmd/cmdutil"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/assess"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/create"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/delete"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/link"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/list"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/publish"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/unlink"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/update"
|
|
"go.probo.inc/probo/pkg/cmd/thirdpartymgmt/view"
|
|
)
|
|
|
|
func NewCmdThirdParty(f *cmdutil.Factory) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "thirdParty <command>",
|
|
Short: "Manage thirdParties",
|
|
}
|
|
|
|
cmd.AddCommand(list.NewCmdList(f))
|
|
cmd.AddCommand(create.NewCmdCreate(f))
|
|
cmd.AddCommand(view.NewCmdView(f))
|
|
cmd.AddCommand(update.NewCmdUpdate(f))
|
|
cmd.AddCommand(delete.NewCmdDelete(f))
|
|
cmd.AddCommand(assess.NewCmdAssess(f))
|
|
cmd.AddCommand(publish.NewCmdPublish(f))
|
|
cmd.AddCommand(link.NewCmdLink(f))
|
|
cmd.AddCommand(unlink.NewCmdUnlink(f))
|
|
|
|
return cmd
|
|
}
|