diff options
author | 2020-11-27 00:38:22 +0100 | |
---|---|---|
committer | 2020-11-27 00:38:22 +0100 | |
commit | 5bc2917e78c133cd8966a65aa200588eb6d7c0d6 (patch) | |
tree | 1ab1f1837932b45092a7207af99c3a6cefed5e73 /client/src/admin/api/index.js | |
parent | f2fcc41cb17ece1fc5acf57809c5e3d61c236133 (diff) | |
download | website_creator-5bc2917e78c133cd8966a65aa200588eb6d7c0d6.tar.gz website_creator-5bc2917e78c133cd8966a65aa200588eb6d7c0d6.tar.bz2 website_creator-5bc2917e78c133cd8966a65aa200588eb6d7c0d6.zip |
save language in login & admin apps
Diffstat (limited to 'client/src/admin/api/index.js')
-rw-r--r-- | client/src/admin/api/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/admin/api/index.js b/client/src/admin/api/index.js index 5b4f9dc..35049a3 100644 --- a/client/src/admin/api/index.js +++ b/client/src/admin/api/index.js @@ -1,4 +1,5 @@ import getUser from './getUser'; import logout from './logout'; +import setDbLang from './setDbLang'; -export { getUser, logout }; +export { getUser, logout, setDbLang }; |