mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-23 00:40:59 +00:00
Add a Mastometrics link in account menu
This commit is contained in:
parent
71f2617a30
commit
c3d1c6d363
1 changed files with 15 additions and 0 deletions
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue