Skip to content
#

Heroku

heroku logo

Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud.

Here are 7,480 public repositories matching this topic...

juanda99
juanda99 commented Sep 30, 2016

It would be better to use bcrypt, beause its more secure as it's slower (uses more computing cycles).
Your code could also be better:

You wouldn't need salt field in User model, because it's saved into the same field as password does.

For authentication, something like:

var mongoose = require('mongoose'),
  bcrypt = require('bcryptjs');

var userSchema = mongoose.Schema({
  email: String,
timgl
timgl commented Oct 12, 2020

Is your feature request related to a problem?

When I'm filtering a view by cohort, I probably want to see how this cohort is made and I might want to edit it

image

Describe the solution you'd like

  • When filtering something by a cohort, show a link (using the component
papercups
reichert621
reichert621 commented Oct 16, 2020

Problem
Users would like to export their customer data in CSV format.

Solution
Let's create an API endpoint in our CustomerController that returns customer data in CSV format. (Currently we just return it as JSON).

This could probably be a good use case for pattern matching, e.g.

def index(conn, %{"format" => "csv") do
  # ...
  customers = Customers.list_customers(
Organization
heroku
Website
www.heroku.com
Wikipedia
Wikipedia
You can’t perform that action at this time.