mirror of
https://github.com/metabolist/metatext
synced 2024-12-18 12:28:35 +01:00
23 lines
583 B
Swift
23 lines
583 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
import MastodonAPI
|
|
import Stubbing
|
|
|
|
extension PreferencesEndpoint: Stubbing {
|
|
public func dataString(url: URL) -> String? {
|
|
switch self {
|
|
case .preferences:
|
|
return """
|
|
{
|
|
"posting:default:visibility": "public",
|
|
"posting:default:sensitive": false,
|
|
"posting:default:language": null,
|
|
"reading:expand:media": "default",
|
|
"reading:expand:spoilers": false
|
|
}
|
|
"""
|
|
}
|
|
}
|
|
}
|