Files
letro-ios/ElementX/Sources/Services/Capabilities/HomeserverCapabilitiesProxyProtocol.swift
Doug 350c04b0f3 Add support for homeserver capabilities to disable the UserDetailsEditScreen UI. (#5421)
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.
2026-04-17 11:52:46 +01:00

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
}