Skip to content

Commit

Permalink
prompts for users
Browse files Browse the repository at this point in the history
  • Loading branch information
Perilynn committed Jun 29, 2015
1 parent 47a6a87 commit 651112c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Ekko/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet weak var window: NSWindow!
let statusItem = NSStatusBar.systemStatusBar().statusItemWithLength(-1)
var firebaseConnector = FirebaseInterface()
var myRef = Firebase(url:"https://greylock-ekko.firebaseio.com/ios/urls/")
var myRef = Firebase(url:"https://YOUR_FIREBASE_HERE.firebaseio.com/") //ENTER YOUR FIREBASE HERE
let quitItem = NSMenuItem(title: "Quit", action: "quit", keyEquivalent: "q")
let notifItem = NSMenuItem(title: "Notifications", action: "notifications", keyEquivalent: "n")
let focusItem = NSMenuItem(title: "Focus Mode", action: "focus", keyEquivalent: "f")
Expand Down Expand Up @@ -119,7 +119,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {


func authWithPassword() {
myRef.authUser("[email protected]", password: "ekko1",
myRef.authUser("YOUR_EMAIL_HERE", password: "YOUR_PASSWORD_HERE", //ENTER YOUR COMBO HERE
withCompletionBlock: {error, authData in

if error != nil {
Expand Down

0 comments on commit 651112c

Please sign in to comment.