1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

Created sync service and supported folder/site service methods

This commit is contained in:
Kyle Spearrin
2016-09-06 20:41:17 -04:00
parent 0402ec648d
commit 5a39d4c73e
4 changed files with 379 additions and 42 deletions

View File

@@ -9,7 +9,7 @@
$scope.createSite = function (model) {
cipherService.encryptSite(model, function (siteModel) {
var site = new Site(siteModel, true);
siteService.save(site, function () {
siteService.saveWithServer(site, function () {
$scope.close();
});
});