forked from shadowfacts/Tusker
21 lines
473 B
Swift
21 lines
473 B
Swift
//
|
|
// ComposingKeys.swift
|
|
// TuskerPreferences
|
|
//
|
|
// Created by Shadowfacts on 4/13/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct PostVisibilityKey: MigratablePreferenceKey {
|
|
static var defaultValue: PostVisibility { .serverDefault }
|
|
}
|
|
|
|
struct ReplyVisibilityKey: MigratablePreferenceKey {
|
|
static var defaultValue: ReplyVisibility { .sameAsPost }
|
|
}
|
|
|
|
struct ContentWarningCopyModeKey: MigratablePreferenceKey {
|
|
static var defaultValue: ContentWarningCopyMode { .asIs }
|
|
}
|