summaryrefslogtreecommitdiff
path: root/components/authorize/src/authorize_app.erl
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2014-11-07 16:22:34 -0800
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2014-11-07 16:22:34 -0800
commit4bf08f04e196192e539fd067bb1709d2a24a821b (patch)
treed6757e69c622097082839a41e5fe11b20e742819 /components/authorize/src/authorize_app.erl
parentb7cf6272a5c7dc08d92602d328141f71d5dcd3b3 (diff)
downloadrvi_core-4bf08f04e196192e539fd067bb1709d2a24a821b.tar.gz
First shot at gen_server calls between components. only authorize implemented so far
Diffstat (limited to 'components/authorize/src/authorize_app.erl')
-rw-r--r--components/authorize/src/authorize_app.erl6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/authorize/src/authorize_app.erl b/components/authorize/src/authorize_app.erl
index 4b33c2f..87b695b 100644
--- a/components/authorize/src/authorize_app.erl
+++ b/components/authorize/src/authorize_app.erl
@@ -24,9 +24,13 @@ start(_StartType, _StartArgs) ->
authorize_sup:start_link().
start_phase(init, _, _) ->
- authorize_rpc:init(),
+ authorize_rpc:init_http_server(),
+ ok;
+
+start_phase(_Other, _, _) ->
ok.
stop(_State) ->
+
ok.