Skip to content

Commit

Permalink
Merge pull request #32 from EdwinBetanc0urt/feature/change-browse-to-…
Browse files Browse the repository at this point in the history
…browser

fix: Change `Browse` to `Browser`.
  • Loading branch information
yamelsenih authored Jun 5, 2024
2 parents aad223e + 46f497f commit 9e9fcb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/models/menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pub struct Menu {
pub window: Option<Window>,
pub process: Option<Process>,
pub form: Option<Form>,
pub browse: Option<Browse>,
pub browser: Option<Browser>,
pub workflow: Option<Workflow>,
// Tree menu childs
pub children: Option<Vec<Menu>>
Expand Down Expand Up @@ -84,7 +84,7 @@ impl Default for Menu {
window: None,
process: None,
form: None,
browse: None,
browser: None,
workflow: None,
// Tree menu childs
children: None
Expand Down Expand Up @@ -174,7 +174,7 @@ pub struct Form {
}

#[derive(Deserialize, Serialize, Extractible, Debug, Clone)]
pub struct Browse {
pub struct Browser {
pub uuid: Option<String>,
pub id: Option<i32>,
pub name: Option<String>,
Expand Down
6 changes: 3 additions & 3 deletions src/models/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub struct Process {
pub print_format_id: Option<i32>,
// Linked
pub browser_id: Option<i32>,
pub browse: Option<DictionaryEntity>,
pub browser: Option<DictionaryEntity>,
pub form_id: Option<i32>,
pub form: Option<DictionaryEntity>,
pub workflow_id: Option<i32>,
Expand Down Expand Up @@ -137,7 +137,7 @@ impl Default for Process {
report_view_id: None,
// Linked
browser_id: None,
browse: None,
browser: None,
form_id: None,
form: None,
workflow_id: None,
Expand Down Expand Up @@ -219,7 +219,7 @@ pub struct Form {
}

#[derive(Deserialize, Serialize, Extractible, Debug, Clone)]
pub struct Browse {
pub struct Browser {
pub uuid: Option<String>,
pub id: Option<i32>,
pub name: Option<String>,
Expand Down

0 comments on commit 9e9fcb4

Please sign in to comment.