-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from Kyome22/solve-config-path-and-access-control
Solved config files path and updated access control of ConfigurationType and Entity
- Loading branch information
Showing
6 changed files
with
24 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
// | ||
// File.swift | ||
// | ||
// | ||
// | ||
// Created by Pawel Madej on 22/09/2020. | ||
// | ||
|
||
import Foundation | ||
|
||
public enum ConfigurationType { | ||
public static let classic = "v1" | ||
public static let v2 = "v2" | ||
public static let v3 = "v3" | ||
public enum ConfigurationType: String { | ||
case classic = "v1" | ||
case v2 = "v2" | ||
case v3 = "v3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,4 +64,5 @@ final class TwitterTextEmojiTests: XCTestCase { | |
XCTAssertFalse("A".isEmoji) | ||
XCTAssertFalse("Á".isEmoji) | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters