diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-03-20 09:26:54 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-20 09:26:54 +0000 |
| commit | dcd77749dd1fdf6b0c8183bfbdf4f97bf238ebe4 (patch) | |
| tree | 97c623911eeb52da65c2b3fd80092f2c86f3dd18 /atuin-client/src/event.rs | |
| parent | skim-demo (#695) (diff) | |
| download | atuin-dcd77749dd1fdf6b0c8183bfbdf4f97bf238ebe4.zip | |
Add history deletion (#791)
* Drop events. I'd still like to do them, but differently
* Start adding delete api stuff
* Set mailmap
* Delete delete delete
* Fix tests
* Make clippy happy
Diffstat (limited to 'atuin-client/src/event.rs')
| -rw-r--r-- | atuin-client/src/event.rs | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/atuin-client/src/event.rs b/atuin-client/src/event.rs deleted file mode 100644 index 4e76c077..00000000 --- a/atuin-client/src/event.rs +++ /dev/null @@ -1,47 +0,0 @@ -use chrono::Utc; -use serde::{Deserialize, Serialize}; - -use crate::history::History; -use atuin_common::utils::uuid_v4; - -#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] -pub enum EventType { - Create, - Delete, -} - -#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, sqlx::FromRow)] -pub struct Event { - pub id: String, - pub timestamp: chrono::DateTime<Utc>, - pub hostname: String, - pub event_type: EventType, - - pub history_id: String, -} - -impl Event { - pub fn new_create(history: &History) -> Event { - Event { - id: uuid_v4(), - timestamp: history.timestamp, - hostname: history.hostname.clone(), - event_type: EventType::Create, - - history_id: history.id.clone(), - } - } - - pub fn new_delete(history_id: &str) -> Event { - let hostname = format!("{}:{}", whoami::hostname(), whoami::username()); - - Event { - id: uuid_v4(), - timestamp: chrono::Utc::now(), - hostname, - event_type: EventType::Create, - - history_id: history_id.to_string(), - } - } -} |
