Skip to content

Commit

Permalink
Merge pull request #158 from mrnickel/4.x
Browse files Browse the repository at this point in the history
Set isLoggedIn and headers access modifiers open
  • Loading branch information
kylebrowning committed Oct 25, 2017
2 parents ac498fb + 13c95cb commit 064deeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Shared/Classes/waterwheel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ open class waterwheelManager {
}()

open let requestFormat = "?_format=json"
var headers = [
open var headers = [
"Content-Type": "application/json",
"Accept": "application/json",
]
Expand All @@ -72,7 +72,7 @@ open class waterwheelManager {
fileprivate var CSRFToken: String = ""
fileprivate var signRequestsBasic: Bool = false
fileprivate var signCSRFToken: Bool = false
fileprivate var isLoggedIn: Bool = false
open var isLoggedIn: Bool = false

/**
Initializes the `waterwheel` instance with the our defaults.
Expand Down

0 comments on commit 064deeb

Please sign in to comment.