Add support for homeserver capabilities to disable editing your user profile. Also updates editable avatar size/formatting to match the latest Figma at the same time.
16 lines
402 B
Swift
16 lines
402 B
Swift
//
|
|
// Copyright 2026 Element Creations Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
// sourcery: AutoMockable
|
|
protocol HomeserverCapabilitiesProxyProtocol {
|
|
func refresh() async
|
|
func canChangeAvatar() async -> Bool
|
|
func canChangeDisplayName() async -> Bool
|
|
}
|