mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
tweak headers so they can be consumed
This commit is contained in:
parent
206d056798
commit
3ea68f8f6c
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ class Auth::DefaultCurrentUserProvider
|
|||
|
||||
CURRENT_USER_KEY ||= "_DISCOURSE_CURRENT_USER".freeze
|
||||
API_KEY ||= "api_key".freeze
|
||||
USER_API_KEY ||= "USER_API_KEY".freeze
|
||||
USER_API_KEY ||= "HTTP_USER_API_KEY".freeze
|
||||
API_KEY_ENV ||= "_DISCOURSE_API".freeze
|
||||
TOKEN_COOKIE ||= "_t".freeze
|
||||
PATH_INFO ||= "PATH_INFO".freeze
|
||||
|
|
|
@ -174,7 +174,7 @@ describe Auth::DefaultCurrentUserProvider do
|
|||
it "allows user API access correctly" do
|
||||
params = {
|
||||
"REQUEST_METHOD" => "GET",
|
||||
"USER_API_KEY" => api_key.key,
|
||||
"HTTP_USER_API_KEY" => api_key.key,
|
||||
}
|
||||
|
||||
expect(provider("/", params).current_user.id).to eq(user.id)
|
||||
|
@ -198,7 +198,7 @@ describe Auth::DefaultCurrentUserProvider do
|
|||
|
||||
params = {
|
||||
"REQUEST_METHOD" => "GET",
|
||||
"USER_API_KEY" => api_key.key,
|
||||
"HTTP_USER_API_KEY" => api_key.key,
|
||||
}
|
||||
|
||||
3.times do
|
||||
|
|
Loading…
Reference in a new issue