- Update App Group IDs from group.com.tt.feels to group.com.88oakapps.feels - Update iCloud container IDs from iCloud.com.tt.feels to iCloud.com.88oakapps.feels - Sync code constants with entitlements across all targets (iOS, Watch, Widget) - Update documentation in CLAUDE.md and PROJECT_OVERVIEW.md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
580 B
Swift
29 lines
580 B
Swift
//
|
|
// DaysFilterClass.swift
|
|
// Feels
|
|
//
|
|
// Created by Trey Tartt on 3/31/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
class DaysFilterClass: ObservableObject {
|
|
static let shared = DaysFilterClass()
|
|
|
|
// Always show all days (1-7 = Sunday through Saturday)
|
|
@Published public var currentFilters = [1, 2, 3, 4, 5, 6, 7]
|
|
|
|
init() {
|
|
// Always include all days
|
|
currentFilters = [1, 2, 3, 4, 5, 6, 7]
|
|
}
|
|
|
|
func addFilter(newFilter: Int) {
|
|
// No-op: always show all days
|
|
}
|
|
|
|
func removeFilter(filter: Int) {
|
|
// No-op: always show all days
|
|
}
|
|
}
|