Doug Lauder
2023-03-22 17:22:27 -04:00
коммит произвёл GitHub
родитель b61c096497
Коммит c943ed6859
13276 изменённых файлов: 1695615 добавлений и 223189 удалений

Просмотреть файл

@@ -4,7 +4,7 @@
package model
import (
"github.com/mattermost/mattermost-server/v6/shared/mlog"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/mlog"
)
type BundleInfo struct {

Просмотреть файл

@@ -26,7 +26,7 @@ func TestClient4TrimTrailingSlash(t *testing.T) {
}
}
// https://github.com/mattermost/mattermost-server/v6/issues/8205
// https://github.com/mattermost/mattermost-server/v6/server/channels/issues/8205
func TestClient4CreatePost(t *testing.T) {
post := &Post{
Props: map[string]any{

Просмотреть файл

@@ -274,7 +274,7 @@ type SubscriptionChange struct {
// TODO remove BoardsLimits.
// It is not used for real.
// Focalboard has some lingering code using this struct
// https://github.com/mattermost/focalboard/blob/fd4cf95f8ac9ba616864b25bf91bb1e4ec21335a/server/app/cloud.go#L86
// https://github.com/mattermost/mattermost-server/v6/server/boards/blob/fd4cf95f8ac9ba616864b25bf91bb1e4ec21335a/server/app/cloud.go#L86
// we should remove this struct once that code is removed.
type BoardsLimits struct {
Cards *int `json:"cards"`
@@ -297,7 +297,7 @@ type ProductLimits struct {
// TODO remove Boards property.
// It is not used for real.
// Focalboard has some lingering code using this property
// https://github.com/mattermost/focalboard/blob/fd4cf95f8ac9ba616864b25bf91bb1e4ec21335a/server/app/cloud.go#L86
// https://github.com/mattermost/mattermost-server/v6/server/boards/blob/fd4cf95f8ac9ba616864b25bf91bb1e4ec21335a/server/app/cloud.go#L86
// we should remove this property once that code is removed.
Boards *BoardsLimits `json:"boards,omitempty"`
Files *FilesLimits `json:"files,omitempty"`

Просмотреть файл

@@ -4,7 +4,7 @@
package model
import (
"github.com/mattermost/mattermost-server/v6/shared/i18n"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/i18n"
)
type CommandArgs struct {

Просмотреть файл

@@ -8,7 +8,7 @@ import (
"io"
"strings"
"github.com/mattermost/mattermost-server/v6/utils/jsonutils"
"github.com/mattermost/mattermost-server/v6/server/channels/utils/jsonutils"
)
const (

Просмотреть файл

@@ -20,8 +20,8 @@ import (
"github.com/mattermost/ldap"
"github.com/mattermost/mattermost-server/v6/shared/filestore"
"github.com/mattermost/mattermost-server/v6/shared/mlog"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/filestore"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/mlog"
)
const (

Просмотреть файл

@@ -11,7 +11,7 @@ import (
"path/filepath"
"strings"
"github.com/mattermost/mattermost-server/v6/utils/imgutils"
"github.com/mattermost/mattermost-server/v6/server/channels/utils/imgutils"
)
const (

Просмотреть файл

@@ -10,8 +10,8 @@ import (
"strconv"
"strings"
"github.com/mattermost/mattermost-server/v6/einterfaces"
"github.com/mattermost/mattermost-server/v6/model"
"github.com/mattermost/mattermost-server/v6/server/channels/einterfaces"
)
type GitLabProvider struct {

Просмотреть файл

@@ -15,7 +15,7 @@ import (
"sync"
"unicode/utf8"
"github.com/mattermost/mattermost-server/v6/shared/markdown"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/markdown"
)
const (

Просмотреть файл

@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
"github.com/mattermost/mattermost-server/v6/shared/mlog"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/mlog"
)
const (

Просмотреть файл

@@ -17,8 +17,8 @@ import (
"golang.org/x/crypto/bcrypt"
"golang.org/x/text/language"
"github.com/mattermost/mattermost-server/v6/services/timezones"
"github.com/mattermost/mattermost-server/v6/shared/mlog"
"github.com/mattermost/mattermost-server/v6/server/platform/services/timezones"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/mlog"
)
const (

Просмотреть файл

@@ -22,9 +22,10 @@ import (
"time"
"unicode"
"github.com/mattermost/mattermost-server/v6/shared/i18n"
"github.com/pborman/uuid"
"github.com/pkg/errors"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/i18n"
)
const (

Просмотреть файл

@@ -11,7 +11,7 @@ import (
"sync/atomic"
"time"
"github.com/mattermost/mattermost-server/v6/shared/mlog"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/mlog"
"github.com/gorilla/websocket"
"github.com/vmihailenco/msgpack/v5"

Просмотреть файл

@@ -4,7 +4,7 @@
package model
import (
"github.com/mattermost/mattermost-server/v6/shared/i18n"
"github.com/mattermost/mattermost-server/v6/server/platform/shared/i18n"
"github.com/vmihailenco/msgpack/v5"
)