aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/facebook/FBURL.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-05-29 15:05:26 -0700
committerAllan Wang <me@allanwang.ca>2017-05-29 15:05:26 -0700
commite33120d454aeb72acc2c1315bddea31dd2f15bb2 (patch)
tree6754e8c5c9e8303b0943d1716560b31a0953361a /app/src/main/kotlin/com/pitchedapps/frost/facebook/FBURL.kt
parentf83fb56dca63a06e4706e6cb404bca9c49e5dbe0 (diff)
downloadfrost-e33120d454aeb72acc2c1315bddea31dd2f15bb2.tar.gz
frost-e33120d454aeb72acc2c1315bddea31dd2f15bb2.tar.bz2
frost-e33120d454aeb72acc2c1315bddea31dd2f15bb2.zip
initial port
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/facebook/FBURL.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/facebook/FBURL.kt15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/facebook/FBURL.kt b/app/src/main/kotlin/com/pitchedapps/frost/facebook/FBURL.kt
new file mode 100644
index 00000000..489f12a7
--- /dev/null
+++ b/app/src/main/kotlin/com/pitchedapps/frost/facebook/FBURL.kt
@@ -0,0 +1,15 @@
+package com.pitchedapps.frost.facebook
+
+/**
+ * Created by Allan Wang on 2017-05-29.
+ */
+enum class FBURL(val url: String) {
+ FEED("https://touch.facebook.com/"),
+ PROFILE("https://touch.facebook.com/me/"),
+ BOOKMARKS("https://touch.facebook.com/bookmarks"),
+ SEARCH("https://touch.facebook.com/search"),
+ EVENTS("https://touch.facebook.com/events/upcoming"),
+ FRIEND_REQUESTS("https://touch.facebook.com/requests"),
+ MESSAGES("https://touch.facebook.com/messages"),
+ NOTIFICATIONS("https://touch.facebook.com/notifications");
+} \ No newline at end of file