Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swiftpackagerepository/multiuser.swift
https://github.com/swiftpackagerepository/multiuser.swift
swift swift-package-manager swift5 user user-management
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/swiftpackagerepository/multiuser.swift
- Owner: SwiftPackageRepository
- License: mit
- Created: 2020-02-29T17:30:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-22T02:30:20.000Z (almost 4 years ago)
- Last Synced: 2024-10-31T16:17:24.388Z (18 days ago)
- Topics: swift, swift-package-manager, swift5, user, user-management
- Language: Swift
- Size: 56.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
### MultiUser handling for swift
MultiUser is **created and maintaned with ❥** by Sascha Muellner.
---
[![Travis CI](https://travis-ci.org/smuellner/MultiUser.swift.svg?branch=master)](https://travis-ci.org/smuellner/MultiUser.swift)
[![Maintainability](https://api.codeclimate.com/v1/badges/960d3ef98a6e144689c5/maintainability)](https://codeclimate.com/github/smuellner/MultiUser.swift/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/960d3ef98a6e144689c5/test_coverage)](https://codeclimate.com/github/smuellner/MultiUser.swift/test_coverage)
[![Platforms](https://img.shields.io/badge/platform-iOS%20%7C%20macOS%20%7C%20tvOS%20%7C%20watchOS%20%7C%20Linux-lightgrey.svg)](https://smuellner.github.io/MultiUser-for-swift)
[![Version](https://img.shields.io/cocoapods/v/MultiUser.svg?style=flat)](https://github.com/smuellner/MultiUser-for-swift/releases/latest)
[![License](https://img.shields.io/cocoapods/l/MultiUser.svg?style=flat)](https://cocoapods.org/pods/MultiUser)
[![Swift Version](https://img.shields.io/badge/swift-5.1-orange.svg?style=flat)](https://developer.apple.com/swift)
[![SPM compatible](https://img.shields.io/badge/SPM-compatible-orange.svg?style=flat)](https://github.com/apple/swift-package-manager)
[![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com)
[![README](https://img.shields.io/badge/-README-lightgrey)](https://smuellner.github.io/MultiUser-for-Swift)## Requirements
The latest version of MultiUser requires:
- Swift 5+
- iOS 13+
- Xcode 11+## Installation
### Swift Package Manager
Using SPM add the following to your dependencies``` 'MultiUser', 'master', 'https://github.com/smuellner/MultiUser-for-swift.git' ```
### CocoaPods
Using CocoaPods add the following to your Podfile:```pod 'MultiUser-for-Swift', '~> 1.0.1'```
### What?
This is a **Swift** package with support for iOS/macOS/tvOS/watchOS that allows to store user releated data for multiple users of an application.### How to use?
#### Service
The **UserService** cares for the whole user handling and implements the **UserServiceProtocol**.
To allow for access throughout your application place the **UserService** in a shared instance like the Application Delegate or use a dependency injection framework like **Swinject**.```swift
// AppDelegate.swift
let userService = UserService()
```
#### User
Retrieve a list of all users:
```swift
let userService = UserService()
print(userService.allUsers)
//```
Create a user
```swift
let user = userService.createUser()
user.username = ""
user.firstname = ""
user.lastname = ""userService.saveUser(user)
```