Updated modified date when saving and removed hardcoded attachment domain

This commit is contained in:
Daniel García
2018-02-15 01:07:57 +01:00
parent 31bf2bc2b1
commit 912901780e
6 changed files with 14 additions and 19 deletions

View File

@@ -32,10 +32,7 @@ impl Attachment {
pub fn to_json(&self) -> JsonValue {
use util::get_display_size;
// TODO: Change all references to localhost (maybe put it in .env?)
let host = "http://localhost:8000";
let web_path = format!("{}/attachments/{}/{}", host, self.cipher_uuid, self.id);
let web_path = format!("/attachments/{}/{}", self.cipher_uuid, self.id);
let display_size = get_display_size(self.file_size);
json!({
@@ -57,8 +54,6 @@ use db::schema::attachments;
/// Database methods
impl Attachment {
pub fn save(&self, conn: &DbConn) -> bool {
// TODO: Update modified date
match diesel::replace_into(attachments::table)
.values(self)
.execute(&**conn) {