forked from shadowfacts/Tusker
25 lines
567 B
Swift
25 lines
567 B
Swift
//
|
|
// LoginSettings.swift
|
|
// Pachyderm
|
|
//
|
|
// Created by Shadowfacts on 9/9/18.
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class LoginSettings: Decodable {
|
|
public let accessToken: String
|
|
private let scope: String?
|
|
|
|
public var scopes: [Scope] {
|
|
guard let scope = scope else { return [] }
|
|
return scope.components(separatedBy: .whitespaces).compactMap(Scope.init)
|
|
}
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case accessToken = "access_token"
|
|
case scope
|
|
}
|
|
}
|