Add a Mastometrics link in account menu

This commit is contained in:
Thomas Ricouard 2023-03-10 18:22:13 +01:00
parent 71f2617a30
commit c3d1c6d363

View file

@ -8,6 +8,7 @@ import Status
import SwiftUI
public struct AccountDetailView: View {
@Environment(\.openURL) private var openURL
@Environment(\.redactionReasons) private var reasons
@EnvironmentObject private var watcher: StreamWatcher
@ -329,6 +330,20 @@ public struct AccountDetailView: View {
Label("settings.push.navigation-title", systemImage: "bell")
}
if let account = viewModel.account {
Divider()
Button {
if let url = URL(string: "https://mastometrics.com/auth/login?username=\(account.acct)@\(client.server)&instance=\(client.server)&auto=true") {
openURL(url)
}
} label: {
Label("Mastometrics", systemImage: "chart.xyaxis.line")
}
Divider()
}
Button {
routerPath.presentedSheet = .settings
} label: {