♻️ Refactor pages namespaces

This commit is contained in:
alonso.torres 2020-12-10 13:56:33 +01:00 committed by Hirunatan
parent 83519e8513
commit 45882ba6a1
40 changed files with 1354 additions and 1247 deletions

View file

@ -11,7 +11,7 @@
(:require
[app.common.exceptions :as ex]
[app.common.pages :as cp]
[app.common.pages-migrations :as pmg]
[app.common.pages.migrations :as pmg]
[app.common.spec :as us]
[app.common.uuid :as uuid]
[app.config :as cfg]

View file

@ -10,7 +10,7 @@
(ns app.services.queries.files
(:require
[app.common.exceptions :as ex]
[app.common.pages-migrations :as pmg]
[app.common.pages.migrations :as pmg]
[app.common.spec :as us]
[app.db :as db]
[app.services.queries :as sq]

View file

@ -23,7 +23,6 @@
(s/def ::email ::us/email)
(s/def ::fullname ::us/string)
(s/def ::metadata any?)
(s/def ::old-password ::us/string)
(s/def ::password ::us/string)
(s/def ::path ::us/string)

View file

@ -9,7 +9,7 @@
(ns app.tasks.trim-file
(:require
[app.common.pages-migrations :as pmg]
[app.common.pages.migrations :as pmg]
[app.config :as cfg]
[app.db :as db]
[app.tasks :as tasks]