MCPcopy Index your code
hub / github.com/rilldata/rill / MustWithQuery

Function MustWithQuery

admin/pkg/urlutil/urlutils.go:23–29  ·  view source on GitHub ↗
(urlString string, query map[string]string)

Source from the content-addressed store, hash-verified

21}
22
23func MustWithQuery(urlString string, query map[string]string) string {
24 newURL, err := WithQuery(urlString, query)
25 if err != nil {
26 panic(err)
27 }
28 return newURL
29}
30
31func MustJoinURL(base string, elem ...string) string {
32 joinedURL, err := url.JoinPath(base, elem...)

Callers 15

sendReportToUsersMethod · 0.92
AuthLoginMethod · 0.92
AuthLogoutProviderMethod · 0.92
AuthWithTokenMethod · 0.92
AuthVerifyDeviceUIMethod · 0.92
GithubConnectMethod · 0.92
GithubAuthMethod · 0.92
GithubConnectUIMethod · 0.92
GithubConnectRetryUIMethod · 0.92

Calls 1

WithQueryFunction · 0.85

Tested by

no test coverage detected