summaryrefslogtreecommitdiffstats
path: root/QuickActions/QuickActionsPrefs/QASRootListController.m
diff options
context:
space:
mode:
Diffstat (limited to 'QuickActions/QuickActionsPrefs/QASRootListController.m')
-rw-r--r--QuickActions/QuickActionsPrefs/QASRootListController.m20
1 files changed, 20 insertions, 0 deletions
diff --git a/QuickActions/QuickActionsPrefs/QASRootListController.m b/QuickActions/QuickActionsPrefs/QASRootListController.m
new file mode 100644
index 0000000..e781ab6
--- /dev/null
+++ b/QuickActions/QuickActionsPrefs/QASRootListController.m
@@ -0,0 +1,20 @@
+#import <Foundation/Foundation.h>
+#import "QASRootListController.h"
+
+@implementation QASRootListController
+
+-(NSArray *)specifiers
+{
+ if (!_specifiers) {
+ _specifiers = [self loadSpecifiersFromPlistName:@"Root" target:self];
+ }
+
+ return _specifiers;
+}
+
+-(void)openSource
+{
+ [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://git.cameronkatri.com/tweaks/tree/QuickActions"] options:@{} completionHandler:nil];
+}
+
+@end