mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
Post follow and updates notifications V1 (#111)
* It is now possible to follow a post in order to receive updates about it * Notifications are now sent when updates are published * Post status changes are now tracked * Update sidebar now shows the post status history * Mark a comment as a post update using the comment form * ... more ...
This commit is contained in:
committed by
GitHub
parent
ce7be1b30c
commit
dad382d2b1
@@ -21,10 +21,12 @@ default: &default
|
||||
host: db
|
||||
username: <%= ENV['POSTGRES_USER'] %>
|
||||
password: <%= ENV['POSTGRES_PASSWORD'] %>
|
||||
database: <%= ENV['POSTGRES_USER'] %>
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
|
||||
database: <%= ENV['POSTGRES_USER'] %>
|
||||
|
||||
# The specified database role being used to connect to postgres.
|
||||
# To create additional roles in postgres see `$ createuser --help`.
|
||||
# When left blank, postgres will use the default role. This is
|
||||
@@ -57,7 +59,8 @@ development:
|
||||
# Do not set this db to the same as development or production.
|
||||
test:
|
||||
<<: *default
|
||||
database: app_test
|
||||
|
||||
database: <%= ENV['POSTGRES_USER'] %>_test
|
||||
|
||||
# As with config/credentials.yml, you never want to store sensitive information,
|
||||
# like your database password, in your source code. If your source code is
|
||||
@@ -80,3 +83,5 @@ test:
|
||||
#
|
||||
production:
|
||||
<<: *default
|
||||
|
||||
database: <%= ENV['POSTGRES_USER'] %>
|
||||
Reference in New Issue
Block a user