Skip to content

Commit 1502061

Browse files
committed
Re-Add GitHub Credentials File
1 parent ae52be3 commit 1502061

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

Diff for: .gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
Carthage
22

3-
##Project Specific
4-
SwiftFlowGitHubBrowser/GitHubAuth/Credentials.swift
53

64
##Mac OS
75
.DS_Store

Diff for: SwiftFlowGitHubBrowser.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
25BE03E11C7C07E6005EBB09 /* AuthenticationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25BE03E01C7C07E6005EBB09 /* AuthenticationService.swift */; };
3636
25C00E991C3CD8E50074655A /* AuthenticationActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25C00E981C3CD8E50074655A /* AuthenticationActions.swift */; };
3737
25C00E9C1C3CDAAC0074655A /* AuthenticationState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25C00E9B1C3CDAAC0074655A /* AuthenticationState.swift */; };
38-
6296CA0E1C4D777800A60ECD /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6296CA0D1C4D777800A60ECD /* Credentials.swift */; };
38+
25FCB37B1F81D93B008EBFD4 /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25FCB37A1F81D93B008EBFD4 /* Credentials.swift */; };
3939
62C935481C8CD17F00887A23 /* GitHubRepositories.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62C935471C8CD17F00887A23 /* GitHubRepositories.swift */; };
4040
62C9354A1C8CD2CC00887A23 /* GitHubRepositoriesActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62C935491C8CD2CC00887A23 /* GitHubRepositoriesActions.swift */; };
4141
62C935791C8CD6E500887A23 /* ListKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 62C935581C8CD6B400887A23 /* ListKit.framework */; };
@@ -545,7 +545,7 @@
545545
25BE03E01C7C07E6005EBB09 /* AuthenticationService.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AuthenticationService.swift; sourceTree = "<group>"; };
546546
25C00E981C3CD8E50074655A /* AuthenticationActions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AuthenticationActions.swift; sourceTree = "<group>"; };
547547
25C00E9B1C3CDAAC0074655A /* AuthenticationState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AuthenticationState.swift; sourceTree = "<group>"; };
548-
6296CA0D1C4D777800A60ECD /* Credentials.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
548+
25FCB37A1F81D93B008EBFD4 /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
549549
62C935471C8CD17F00887A23 /* GitHubRepositories.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GitHubRepositories.swift; sourceTree = "<group>"; };
550550
62C935491C8CD2CC00887A23 /* GitHubRepositoriesActions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GitHubRepositoriesActions.swift; sourceTree = "<group>"; };
551551
62C9354C1C8CD6B300887A23 /* ListKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ListKit.xcodeproj; path = Carthage/Checkouts/ListKit/ListKit.xcodeproj; sourceTree = SOURCE_ROOT; };
@@ -710,12 +710,12 @@
710710
25BB761F1C3CB8CB008EA13B /* SwiftFlowGitHubBrowser */ = {
711711
isa = PBXGroup;
712712
children = (
713+
25FCB3791F81D930008EBFD4 /* GitHubAuth */,
713714
257420871D4430330002D020 /* UIKitExtensions */,
714715
257420821D442A700002D020 /* Views */,
715716
62C935461C8CD14F00887A23 /* APIRequests */,
716717
25BE03BA1C7C079B005EBB09 /* Services */,
717718
62EF0A6C1C700ABB00D13711 /* ViewControllers */,
718-
25C00EA41C3CEDBB0074655A /* GitHubAuth */,
719719
25C00E9A1C3CDA340074655A /* Reducers */,
720720
25C00E8E1C3CD8BE0074655A /* Actions */,
721721
258184381C3CC8FA008E200A /* Routes */,
@@ -773,10 +773,10 @@
773773
name = Reducers;
774774
sourceTree = "<group>";
775775
};
776-
25C00EA41C3CEDBB0074655A /* GitHubAuth */ = {
776+
25FCB3791F81D930008EBFD4 /* GitHubAuth */ = {
777777
isa = PBXGroup;
778778
children = (
779-
6296CA0D1C4D777800A60ECD /* Credentials.swift */,
779+
25FCB37A1F81D93B008EBFD4 /* Credentials.swift */,
780780
);
781781
path = GitHubAuth;
782782
sourceTree = "<group>";
@@ -1448,7 +1448,6 @@
14481448
buildActionMask = 2147483647;
14491449
files = (
14501450
62EF0A701C700AD500D13711 /* MainViewController.swift in Sources */,
1451-
6296CA0E1C4D777800A60ECD /* Credentials.swift in Sources */,
14521451
25BE03E11C7C07E6005EBB09 /* AuthenticationService.swift in Sources */,
14531452
2574204D1D4421410002D020 /* BookmarkService.swift in Sources */,
14541453
257420891D44304C0002D020 /* NavigationController+CompletionBlock.swift in Sources */,
@@ -1462,6 +1461,7 @@
14621461
62C9354A1C8CD2CC00887A23 /* GitHubRepositoriesActions.swift in Sources */,
14631462
257420861D442E020002D020 /* BookmarkTableViewCell.swift in Sources */,
14641463
25C00E991C3CD8E50074655A /* AuthenticationActions.swift in Sources */,
1464+
25FCB37B1F81D93B008EBFD4 /* Credentials.swift in Sources */,
14651465
2581843A1C3CC912008E200A /* Routes.swift in Sources */,
14661466
62C935481C8CD17F00887A23 /* GitHubRepositories.swift in Sources */,
14671467
25BB76211C3CB8CB008EA13B /* AppDelegate.swift in Sources */,

Diff for: SwiftFlowGitHubBrowser/GitHubAuth/Credentials.swift

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// Credentials.swift
3+
// SwiftFlowGitHubBrowser
4+
//
5+
// Created by Benji Encz on 1/5/16.
6+
// Copyright © 2016 Benji Encz. All rights reserved.
7+
//
8+
9+
import Foundation
10+
11+
// Insert GitHub Token and Secret Here
12+
let gitHubClientId = ""
13+
let gitHubClientSecret = ""

0 commit comments

Comments
 (0)