Attribute Based Access Control - Base * MM-63662 * MM-63919 * MM-63954 * MM-63955 * MM-63425 * MM-63426 * MM-63458 * MM-63459 * MM-63603 * MM-63845 * MM-64146 * MM-64199 * MM-64201 * MM-64233 * MM-64247 * MM-64268 --------- Co-authored-by: Harshil Sharma <harshilsharma63@gmail.com> Co-authored-by: Pablo Andrés Vélez Vidal <pablovv2012@gmail.com> Co-authored-by: abhijit-singh <abhijitsingh0702@gmail.com> Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
40 строки
1.8 KiB
Go
40 строки
1.8 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
//go:build enterprise
|
|
|
|
package enterprise
|
|
|
|
import (
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/account_migration"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/cluster"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/compliance"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/data_retention"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/ldap"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/cloud"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/notification"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/oauth/google"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/oauth/office365"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/saml"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/oauth/openid"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/license"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/ip_filtering"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/outgoing_oauth_connections"
|
|
// Needed to ensure the init() method in the EE gets run
|
|
_ "github.com/mattermost/enterprise/access_control"
|
|
)
|