Skip to content
This repository was archived by the owner on Nov 19, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 48 additions & 57 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ let package = Package(
.library(name: "UserModule", targets: ["UserModule"]),
],
dependencies: [
.package(url: "https://github.com/feathercms/feather-core", .branch("dev")),
.package(url: "https://github.com/feathercms/user-objects", .branch("main")),
.package(url: "https://github.com/feathercms/feather-core", .branch("dev")),
.package(url: "https://github.com/feathercms/user-objects", .branch("main")),
],
targets: [
.target(name: "UserModule",
dependencies: [
.product(name: "UserObjects", package: "user-objects"),
.product(name: "Feather", package: "feather-core"),
.product(name: "FeatherCore", package: "feather-core"),
],
resources: [
// .copy("Bundle"),
Expand Down
9 changes: 1 addition & 8 deletions Sources/UserModule/Interface/Api/UserAccountApi.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
//
// File.swift
//
//
// Created by Tibor Bodecs on 2022. 02. 24..
//

import Foundation
import Feather
import FeatherCore
import UserObjects
import Fluent

Expand Down
9 changes: 1 addition & 8 deletions Sources/UserModule/Interface/Api/UserAccountRoleApi.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
//
// File.swift
//
//
// Created by Tibor Bodecs on 2022. 03. 31..
//

import Foundation
import Feather
import FeatherCore
import UserObjects
import Fluent

Expand Down
9 changes: 1 addition & 8 deletions Sources/UserModule/Interface/Api/UserInvitationApi.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
//
// File.swift
//
//
// Created by Tibor Bodecs on 2022. 03. 27..
//

import Foundation
import Feather
import FeatherCore
import UserObjects

public struct UserInvitationApi {
Expand Down
9 changes: 1 addition & 8 deletions Sources/UserModule/Interface/Api/UserProfileApi.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
//
// File.swift
//
//
// Created by Tibor Bodecs on 2022. 03. 27..
//

import Foundation
import Feather
import FeatherCore
import UserObjects

public struct UserProfileApi {
Expand Down
9 changes: 1 addition & 8 deletions Sources/UserModule/Interface/Api/UserRoleApi.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
//
// File.swift
//
//
// Created by Tibor Bodecs on 2022. 02. 28..
//

import Foundation
import Feather
import FeatherCore
import UserObjects

public struct UserRoleApi {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import SwiftSgml
import Feather
import FeatherCore

public struct UserInvitationContext {
public let title: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Tibor Bodecs on 2021. 12. 23..
//

import Feather
import FeatherCore

public struct UserLoginContext {
public let title: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import SwiftSgml
import Feather
import FeatherCore

public struct UserNewPasswordContext {
public let title: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import SwiftSgml
import Feather
import FeatherCore

public struct UserRegisterContext {
public let title: String
Expand Down
Loading