Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark Webslice for Removal #4182

Merged
merged 2 commits into from
Oct 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion DNN Platform/Library/Entities/Modules/ModuleInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,8 @@ public CacheLevel Cacheability

[XmlIgnore]
public bool IsShareableViewOnly { get; set; }


[Obsolete("WebSlice functionality is no longer used. Will be removed in v10.0.0")]
[XmlElement("iswebslice")]
public bool IsWebSlice { get; set; }

Expand Down Expand Up @@ -472,12 +473,15 @@ public ModulePermissionCollection ModulePermissions
[XmlElement("visibility")]
public VisibilityState Visibility { get; set; }

[Obsolete("WebSlice functionality is no longer used. Will be removed in v10.0.0")]
[XmlElement("websliceexpirydate")]
public DateTime WebSliceExpiryDate { get; set; }

[Obsolete("WebSlice functionality is no longer used. Will be removed in v10.0.0")]
[XmlElement("webslicetitle")]
public string WebSliceTitle { get; set; }

[Obsolete("WebSlice functionality is no longer used. Will be removed in v10.0.0")]
[XmlElement("webslicettl")]
public int WebSliceTTL { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,16 @@ public class ExportTabModule : BasicExportImportDto

public bool DisplaySyndicate { get; set; }

[Obsolete("WebSlice functionality is no longer used. Will be removed in v10.0.0")]
public bool IsWebSlice { get; set; }

[Obsolete("WebSlice functionality is no longer used. Will be removed in v10.0.0")]
public string WebSliceTitle { get; set; }

[Obsolete("WebSlice functionality is no longer used. Will be removed in v10.0.0")]
public DateTime? WebSliceExpiryDate { get; set; }

[Obsolete("WebSlice functionality is no longer used. Will be removed in v10.0.0")]
public int? WebSliceTTL { get; set; }

public int? CreatedByUserID { get; set; }
Expand Down