koajs / generic-session

koa session store with memory, redis or others.
MIT License
414 stars 65 forks source link

Remove koa:sid.sig cookie #73

Closed catamphetamine closed 8 years ago

catamphetamine commented 8 years ago

Here: https://github.com/koajs/generic-session/blob/master/lib/session.js#L97

    reset: function() {
      this.cookies.set(key, null);
      this.cookies.set(key + '.sig', null);
    }
dead-horse commented 8 years ago

LGTM. PR?

catamphetamine commented 8 years ago

@dead-horse Yeah, here you go. https://github.com/koajs/generic-session/pull/74/files This should work.