Kiran Jonnalagadda

Results 275 issues of Kiran Jonnalagadda

A work-in-progress project needs a way to link to updates: 1. Links (code, blog, etc) 2. Screenshots and videos 3. Progress meter 4. Checklist The progress meter can be a...

The home page should show events sorted by city. This makes it easy to find upcoming events by location. The first tab should be "All" for all events. The JavaScript...

The commenting code in Hacknight is poorly implemented. It should be replaced with Flask-Commentease. Data on the current hacknight server should also be migrated to Commentease, but that can be...

All models need to implement `__repr__` to aid in debugging. The output from this method should be like this: ``

Hacknight currently grants admin rights only to a Profile's owners (for Org profiles). It should allow other Teams or Users to have access on a per Profile or per Event...

Flask-Lastuser needs to honour the secure flag in `SESSION_COOKIE_SECURE` and use it for the Lastuser cookie.

It is possible for a user to be logged into a client app while not logged into Lastuser, possibly because the login cookie was deleted there. In such a case,...

In hasgeek/coaster#154, we've added an explicit expectation of login managers being compatible with Flask-Login's user-loading API. Flask-Lastuser might as well pick up other ideas from Flask-Login and revamp the API...

We currently save the current URL when performing a login operation. However, if the current request was anything other than a GET, it can't be returned to. In such a...

Flask-Lastuser's old resource decorator is clunky and has never been used in production. The `before_request` handler, however, has recently acquired the ability to parse an access token like a session...