Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: moving httpstatus dev -> mgmt #85

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Shared/App/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
Contentsquare.logLevel = .info
ErrorAnalysis.setURLMaskingPatterns([
"https://httpstatus-dev.eu-west-1.csq.fr/:status_code/person/:person_id/store/:store_id"
"https://httpstatus-mgmt.eu-west-1.csq.fr/:status_code/person/:person_id/store/:store_id"
])

Contentsquare.onSessionReplayLinkChange() { newLink in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class ErrorAnalysisViewController: UIViewController {
}

private func urlRequest(method: String, path: String = "") -> URLRequest {
let url = URL(string: "https://httpstatus-dev.eu-west-1.csq.fr/401/\(path)")!
let url = URL(string: "https://httpstatus-mgmt.eu-west-1.csq.fr/401/\(path)")!
var urlComps = URLComponents(string: url.absoluteString)!
if method == "GET" {
urlComps.queryItems = [
Expand Down