aboutsummaryrefslogtreecommitdiff
path: root/QSThingsPlugin/Types/Constants.m
blob: d92d0075e0dbadde31d8127ea57293f00793c267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma mark - Things Object Types

NSString *const kAppSectionType = @"things.app-section";
NSString *const kProjectType = @"things.project";
NSString *const kAreaType = @"things.area";
NSString *const kTagType = @"things.tag";
NSString *const kTaskType = @"things.task";

#pragma mark - Keychain
NSString *const kKeychainService = @"QSThingsPlugin";
NSString *const kAuthenticationKeyKeychainKey = @"authenticationKey";

#pragma mark - App Section Keys
typedef NSString* ThingsAppSectionKey NS_STRING_ENUM;

ThingsAppSectionKey const ThingsAppSectionKeyInbox = @"things-app-section-inbox";
ThingsAppSectionKey const ThingsAppSectionKeyToday = @"things-app-section-today";
ThingsAppSectionKey const ThingsAppSectionKeyUpcoming = @"things-app-section-upcoming";
ThingsAppSectionKey const ThingsAppSectionKeyAnytime = @"things-app-section-anytime";
ThingsAppSectionKey const ThingsAppSectionKeySomeday = @"things-app-section-someday";