summaryrefslogtreecommitdiffstats
path: root/QuickActions/QuickActionsPrefs/QASRootListController.m
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-08-16 16:09:37 -0400
committerCameron Katri <me@cameronkatri.com>2021-08-16 16:10:54 -0400
commit615b0aefe92fb5d7b1fae821f91eb98e3f403bfe (patch)
treecc157ab8b0684f1b85b6645fe6198ae62dcbbe53 /QuickActions/QuickActionsPrefs/QASRootListController.m
parent4d2aa96bbce1edc066b3bfc197d1e2e968e4aa5d (diff)
downloadtweaks-615b0aefe92fb5d7b1fae821f91eb98e3f403bfe.tar.gz
tweaks-615b0aefe92fb5d7b1fae821f91eb98e3f403bfe.tar.zst
tweaks-615b0aefe92fb5d7b1fae821f91eb98e3f403bfe.zip
QuickActions: Add new tweak
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