You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by robertkowalski <gi...@git.apache.org> on 2014/11/23 18:15:45 UTC

[GitHub] couchdb-couch pull request: Return username on POST to /_session

GitHub user robertkowalski opened a pull request:

    https://github.com/apache/couchdb-couch/pull/16

    Return username on POST to /_session

    When logging in with admin credentials and no user doc is
    present, the name was `null`. Example:
    
    `{"ok":true,"name":null,"roles":["_admin"]}`
    
    closes COUCHDB-1356

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/robertkowalski/couchdb-couch COUCHDB-1356-auth-session

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/couchdb-couch/pull/16.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #16
    
----
commit e109ff8f2be5f3ea1ae221279975c9e1ef75b851
Author: Robert Kowalski <ro...@kowalski.gd>
Date:   2014-11-23T15:34:58Z

    Return username on POST to /_session
    
    When logging in with admin credentials and no user doc is
    present, the name was `null`. Example:
    
    `{"ok":true,"name":null,"roles":["_admin"]}`
    
    closes COUCHDB-1356

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] couchdb-couch pull request: Return username on POST to /_session

Posted by robertkowalski <gi...@git.apache.org>.
Github user robertkowalski commented on the pull request:

    https://github.com/apache/couchdb-couch/pull/16#issuecomment-68115027
  
    merged as f6a34da73b0b1c3552b77afa037c9ae287237f87! happy holidays everyone!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] couchdb-couch pull request: Return username on POST to /_session

Posted by kxepal <gi...@git.apache.org>.
Github user kxepal commented on the pull request:

    https://github.com/apache/couchdb-couch/pull/16#issuecomment-67250018
  
    +1


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] couchdb-couch pull request: Return username on POST to /_session

Posted by kxepal <gi...@git.apache.org>.
Github user kxepal commented on a diff in the pull request:

    https://github.com/apache/couchdb-couch/pull/16#discussion_r20766024
  
    --- Diff: test/couchdb_auth_tests.erl ---
    @@ -0,0 +1,53 @@
    +% Licensed under the Apache License, Version 2.0 (the "License"); you may not
    +% use this file except in compliance with the License. You may obtain a copy of
    +% the License at
    +%
    +%   http://www.apache.org/licenses/LICENSE-2.0
    +%
    +% Unless required by applicable law or agreed to in writing, software
    +% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
    +% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
    +% License for the specific language governing permissions and limitations under
    +% the License.
    +
    +-module(couchdb_auth_tests).
    +
    +-include_lib("couch/include/couch_eunit.hrl").
    +
    +-define(TIMEOUT, 1000).
    --- End diff --
    
    You seems not using this define anywhere in test module...


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] couchdb-couch pull request: Return username on POST to /_session

Posted by kxepal <gi...@git.apache.org>.
Github user kxepal commented on a diff in the pull request:

    https://github.com/apache/couchdb-couch/pull/16#discussion_r20766030
  
    --- Diff: test/couchdb_auth_tests.erl ---
    @@ -0,0 +1,53 @@
    +% Licensed under the Apache License, Version 2.0 (the "License"); you may not
    +% use this file except in compliance with the License. You may obtain a copy of
    +% the License at
    +%
    +%   http://www.apache.org/licenses/LICENSE-2.0
    +%
    +% Unless required by applicable law or agreed to in writing, software
    +% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
    +% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
    +% License for the specific language governing permissions and limitations under
    +% the License.
    +
    +-module(couchdb_auth_tests).
    +
    +-include_lib("couch/include/couch_eunit.hrl").
    +
    +-define(TIMEOUT, 1000).
    +
    +
    +setup() ->
    +    Addr = config:get("httpd", "bind_address", "127.0.0.1"),
    +    Port = integer_to_list(mochiweb_socket_server:get(couch_httpd, port)),
    --- End diff --
    
    This wouldn't work for R14 releases.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] couchdb-couch pull request: Return username on POST to /_session

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/couchdb-couch/pull/16


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] couchdb-couch pull request: Return username on POST to /_session

Posted by srsgores <gi...@git.apache.org>.
Github user srsgores commented on the pull request:

    https://github.com/apache/couchdb-couch/pull/16#issuecomment-66935697
  
    +1 for this.  Just had this happen to me.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---