Skip to content

Commit

Permalink
fix cells max expiration
Browse files Browse the repository at this point in the history
  • Loading branch information
c12simple committed Jul 13, 2023
1 parent 08dd675 commit b1af824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idm/share/client-front-configs.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ func (sc *Client) filterOptionsFromScopes(options PluginOptions, contextParams c
options.enableFileInternal = contextParams.Val("ENABLE_FILE_INTERNAL_SHARING", scope).Default(options.enableFileInternal).Bool()
options.enableFolderPublicLinks = contextParams.Val("ENABLE_FOLDER_PUBLIC_LINK", scope).Default(options.enableFolderPublicLinks).Bool()
options.enableFolderInternal = contextParams.Val("ENABLE_FOLDER_INTERNAL_SHARING", scope).Default(options.enableFolderInternal).Bool()
options.CellsMaxExpiration = contextParams.Val("CELLS_MAX_EXPIRATION", scope).Default(options.MaxExpiration).Int()
options.CellsMaxExpiration = contextParams.Val("CELLS_MAX_EXPIRATION", scope).Default(options.CellsMaxExpiration).Int()
}

return options
Expand Down

0 comments on commit b1af824

Please sign in to comment.