21 lines
507 B
Swift
21 lines
507 B
Swift
import Foundation
|
|
|
|
enum SharingAction: Stateable {
|
|
case showSharing(Bool)
|
|
|
|
case shareLocation(lat: Double, lon: Double)
|
|
case shareContact(jid: String)
|
|
case shareDocuments([Data])
|
|
case shareMedia(ids: [String])
|
|
|
|
case checkCameraAccess
|
|
case setCameraAccess(Bool)
|
|
|
|
case checkGalleryAccess
|
|
case setGalleryAccess(Bool)
|
|
case galleryItemsUpdated(items: [SharingGalleryItem])
|
|
|
|
case cameraCaptured(media: Data, type: SharingCameraMediaType)
|
|
case flushCameraCaptured
|
|
}
|