summaryrefslogtreecommitdiff
path: root/Juick/Model
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Model')
-rw-r--r--Juick/Model/User.h2
-rw-r--r--Juick/Model/User.m5
2 files changed, 0 insertions, 7 deletions
diff --git a/Juick/Model/User.h b/Juick/Model/User.h
index 6265687..4a4988a 100644
--- a/Juick/Model/User.h
+++ b/Juick/Model/User.h
@@ -15,8 +15,6 @@
+ (User *) fromJSON:(NSDictionary *)jsonData;
-+ (BOOL) isAuthenticated;
-
+ (void) throwUnableToLogin:(UIViewController *)view error:(NSError *)error;
@end
diff --git a/Juick/Model/User.m b/Juick/Model/User.m
index 344eb7b..5c5e553 100644
--- a/Juick/Model/User.m
+++ b/Juick/Model/User.m
@@ -19,11 +19,6 @@
return user;
}
-+(BOOL) isAuthenticated {
- NSString *password = [SAMKeychain passwordForService:[[NSBundle mainBundle] bundleIdentifier] account:@"com.juick.password"];
- return password != nil;
-}
-
+(void) throwUnableToLogin:(UIViewController *)view error:(NSError *)error {
UIAlertController *alert = [UIAlertController new];
[alert setTitle:@"Something went wrong"];