summaryrefslogtreecommitdiff
path: root/src/com/p4square/grow/frontend/GrowFrontend.java
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2013-09-05 21:18:04 -0700
committerJesse Morgan <jesse@jesterpm.net>2013-09-05 21:18:04 -0700
commit36970455d1fbb03a751cddbdbaa5bed334e58169 (patch)
treeeee66ec85184a23c92c94a29edc6991eb94c6543 /src/com/p4square/grow/frontend/GrowFrontend.java
parent283c4928081f82e3f6ef7a0f80aecf0bacb89dbe (diff)
Moving Sessions to FMFacade. Adding transition from Assessment to Training.
Diffstat (limited to 'src/com/p4square/grow/frontend/GrowFrontend.java')
-rw-r--r--src/com/p4square/grow/frontend/GrowFrontend.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/p4square/grow/frontend/GrowFrontend.java b/src/com/p4square/grow/frontend/GrowFrontend.java
index 7556c20..af44ff9 100644
--- a/src/com/p4square/grow/frontend/GrowFrontend.java
+++ b/src/com/p4square/grow/frontend/GrowFrontend.java
@@ -32,8 +32,8 @@ import com.p4square.grow.config.Config;
import com.p4square.f1oauth.F1OAuthHelper;
import com.p4square.f1oauth.SecondPartyVerifier;
-import com.p4square.grow.frontend.session.SessionCheckingAuthenticator;
-import com.p4square.grow.frontend.session.SessionCreatingAuthenticator;
+import com.p4square.session.SessionCheckingAuthenticator;
+import com.p4square.session.SessionCreatingAuthenticator;
/**
* This is the Restlet Application implementing the Grow project front-end.
@@ -110,6 +110,7 @@ public class GrowFrontend extends FMFacade {
accountRouter.attach("/authenticate", AuthenticatedResource.class);
accountRouter.attach("/assessment/question/{questionId}", SurveyPageResource.class);
+ accountRouter.attach("/assessment/results", AssessmentResultsPage.class);
accountRouter.attach("/assessment", SurveyPageResource.class);
accountRouter.attach("/training/{chapter}/videos/{videoId}.json", VideosResource.class);
accountRouter.attach("/training/{chapter}", TrainingPageResource.class);