Skip to content

Commit

Permalink
feat(dashboard): Adding Pass parameters option
Browse files Browse the repository at this point in the history
Signed-off-by: Binyamin Yawitz <[email protected]>
  • Loading branch information
byawitz committed Apr 12, 2024
1 parent aa58fe7 commit 296833e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/dashboard/src/views/LinkFormView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@

<div class="mb-3">
<div class="form-label">{{ $t('Link options') }}</div>
<SlideCheckbox :label="$t('Pass parameters')" v-model="link.pass_parameters" />
<SlideCheckbox :label="$t('Monitor link uptime')" v-model="link.monitor" />
<SlideCheckbox :label="$t('Informal redirect')" v-model="link.informal_redirection" />
<SlideCheckbox :label="$t('Enable Plus page')" v-model="link.plus_enabled" />
Expand Down
1 change: 1 addition & 0 deletions apps/models/db/LinkModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default class LinkModel extends BaseDBModel {
public monitor?: boolean;
public plus_enabled?: boolean;
public expiring_link?: boolean;
public pass_parameters?: boolean;
public password_protected?: boolean;
public informal_redirection?: boolean;

Expand Down

0 comments on commit 296833e

Please sign in to comment.