From 7cf393095282077b0bbae3046826b67f4f20a8eb Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 10 Sep 2025 16:12:55 +0200 Subject: Add auth key + complete task action --- QSThingsPlugin/Types/Constants.h | 4 ++++ QSThingsPlugin/Types/Constants.m | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'QSThingsPlugin/Types') diff --git a/QSThingsPlugin/Types/Constants.h b/QSThingsPlugin/Types/Constants.h index e365a8f..044dcde 100644 --- a/QSThingsPlugin/Types/Constants.h +++ b/QSThingsPlugin/Types/Constants.h @@ -5,3 +5,7 @@ extern NSString *const kProjectType; extern NSString *const kAreaType; extern NSString *const kTagType; extern NSString *const kTaskType; + +#pragma mark - Keychain +extern NSString *const kKeychainService; +extern NSString *const kAuthenticationKeyKeychainKey; diff --git a/QSThingsPlugin/Types/Constants.m b/QSThingsPlugin/Types/Constants.m index 4abf9f7..e6158a2 100644 --- a/QSThingsPlugin/Types/Constants.m +++ b/QSThingsPlugin/Types/Constants.m @@ -5,3 +5,7 @@ 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"; -- cgit