forked from Ivasoft/mattermost-mobile
* Fix permalink to not joined channels and to not fetched posts. * i18n-extract * Implement as designed * Revert unintended change * Minor fix and fix svgs * updated svg to fix masking problems and colors * Fix lint * Address feedback * Update join_public_channel.tsx fixed public channel svg * Update join_public_channel.tsx * Update join_private_channel.tsx * Address feedback Co-authored-by: Matthew Birtch <mattbirtch@gmail.com>
15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
type PermalinkErrorType = {
|
|
unreachable?: boolean;
|
|
notExist?: boolean;
|
|
joinedTeam?: boolean;
|
|
privateChannel?: boolean;
|
|
privateTeam?: boolean;
|
|
teamName?: string;
|
|
channelName?: string;
|
|
teamId?: string;
|
|
channelId?: string;
|
|
}
|