Skip to content

Commit 2913bb8

Browse files
Added new instance scan description to readme
1 parent 06076f5 commit 2913bb8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,9 @@ Use GlideRecordSecure API to ensure the security checks are performed and unauth
300300
### For loop iterators "i" should be declared
301301
In general, variables in JavaScript should be properly declared (e.g. using “var”). The declaration defines the scope of the variable, ensuring it's accessible only within the intended block. This prevents unintended variable pollution and conflicts. Especially in for loops, often an iterator “i” is used and not properly declared. For example “for (i=0; i<10; i++)” instead of “for (var i=0; i<10; i++)”. As a result, this could unintentionally alter the value of other 'i' iterators in different for loops.
302302

303+
### Don't show unpublished knowledge articles
304+
Unpublished knowledge articles may contain sensitive information that should not be visible to anyone with read access. By preventing access to unpublished articles, reviewers are given the opportunity to verify the content before it is made accessible. This ensures that only properly reviewed and approved information is available to users with read access.
305+
303306
## Category: User Experience
304307

305308
### Added a Number Prefix which already exists

0 commit comments

Comments
 (0)