diff options
author | Brad Anderson <brad@cloudant.com> | 2010-05-26 15:21:51 -0400 |
---|---|---|
committer | Brad Anderson <brad@cloudant.com> | 2010-05-26 15:21:51 -0400 |
commit | 7801b1fa879a752d11d538f35ee4905609779801 (patch) | |
tree | e5cd9d9aced0721e14ea098059e0746baa6be3ed /src/fabric_api.erl | |
parent | 0b8e2d0bb9bed5bac6302c8f22737c37a02bcc68 (diff) |
rest of recent fabric changes. switch to #part{} record, add get_db_info work (not functional), and change others around to use new fullmap
Diffstat (limited to 'src/fabric_api.erl')
-rw-r--r-- | src/fabric_api.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fabric_api.erl b/src/fabric_api.erl index e399e048..53dc96e3 100644 --- a/src/fabric_api.erl +++ b/src/fabric_api.erl @@ -43,7 +43,7 @@ close_db(Db) -> -spec get_db_info(#db{}, bstring()) -> {ok, [{atom(), any()}]}. get_db_info(Db, Customer) -> - showroom_db:get_db_info(Db, Customer). + fabric:get_db_info(Db, Customer). -spec replicate_db(ejson(), #user_ctx{}) -> {ok, ejson()}. replicate_db(PostBody, UserCtx) -> |