Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

JhumanJ/OpnForm

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Sanitize `$emailField['name']` to prevent XSS vulnerabilities** In the `getMentionHtml` method, directly outputting `$emailField['name']` into HTML attributes and co...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Check the result of `$integration->save()` and handle failures** Currently, the return value of `$integration->save()` is not acted upon. If the save operation fails...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Handle potential missing keys in `$existingData`** When accessing keys like `notification_emails`, `notification_reply_to`, and others from `$existingData`, there is...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Sanitize submission data to protect sensitive information** Including raw submission data in the Slack message may expose sensitive or personally identifiable inform...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Fix potential null dereference in `getData()` method** If `firstWhere` does not find a matching element, it returns `null`. Attempting to access `['value']` on `null...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Ensure output is properly sanitized to prevent XSS vulnerabilities** When returning the processed content, ensure that any user-supplied data is properly sanitized t...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Add null checks when mapping over relations to prevent errors** In `formatRelationValue`, mapping over `relations` assumes that each `r` is an object with a `title` ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Avoid casting objects to arrays in `getData()`** Casting an object to an array may produce unexpected results, including private and protected properties with specia...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Escape user input to prevent XSS vulnerabilities** In the cases for `'url'` and `'email'`, interpolating `value` directly into HTML can lead to Cross-Site Scripting ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Add null checks when mapping over people to prevent runtime errors** In `formatPeopleValue`, when mapping over `people`, accessing `p.name` without checking if `p` i...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Add error handling for invalid date values** In the `formatDateValue` method, parsing date strings with `parseISO` may result in `Invalid Date` if `value` is not a v...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Enhance validation rules for email fields** The validation rules are updated, which is great. However, consider the following improvements: - For the `'reply_to'` f...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:hammer_and_wrench: Refactor suggestion_ **Simplify date format determination** In the `formatDateValue` method, the determination of `dateFormat` can be simplified for clarity: ```javascript c...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Ensure fields with falsy values are included in `formattedData`** In the `getFormattedData` method, the condition: ```javascript if (!this.formData[field.id] && !th...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Improve the log message for clarity and professionalism** The current log message uses multiple exclamation marks and the word "DANGEROUS," which may be less profess...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:hammer_and_wrench: Refactor suggestion_ _:warning: Potential issue_ **Add error handling when sending notifications** Exceptions may occur when sending notifications (e.g., mail server issues)...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:hammer_and_wrench: Refactor suggestion_ **Consider making `RISKY_USERS_LIMIT` configurable** Defining `RISKY_USERS_LIMIT` as a hard-coded constant may limit flexibility. Consider retrieving thi...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:hammer_and_wrench: Refactor suggestion_ **Improve Content Comparison in Watcher to Prevent Unnecessary Updates** Comparing `newValue` with `quillInstance.root.innerHTML` may lead to false negat...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Avoid Direct Manipulation of `innerHTML`; Use Quill's API Instead** Directly setting `quillInstance.root.innerHTML` can introduce security vulnerabilities, such as X...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **[Security] Potential XSS vulnerability due to unescaped output of `$emailContent`.** The variable `$emailContent` is output using the `{!! !!}` syntax, which renders...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **Ensure content is sanitized to prevent XSS vulnerabilities** Returning `doc.body.innerHTML` directly could introduce Cross-Site Scripting (XSS) vulnerabilities if `c...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **[Security] Potential XSS vulnerability due to unescaped output of `$field['value']`.** The output of `$field['value']` uses `{!! !!}`, which renders unescaped HTML c...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:warning: Potential issue_ **[Security] Ensure safe construction of URLs to prevent injection attacks.** In the button component, the URL is constructed by concatenating `$form->share_url` and `...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:hammer_and_wrench: Refactor suggestion_ **Consider adding URL format validation for 'redirect_url'** The validation rule for 'redirect_url' has been changed from 'active_url' to 'nullable|max:2...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on JhumanJ/OpnForm
_:bulb: Codebase verification_ **Inconsistent `backdrop-blur` Usage Detected** The `backdrop-blur` property in `FirstSubmissionModal.vue` has been changed from `"sm"` to `true`. Unlike other co...

View on GitHub

coderabbitai[bot] created a review on a pull request on JhumanJ/OpnForm
**Actionable comments posted: 45** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (37)</summary><blockquote> <details> <summary>api/tests/Feature/Forms/FormIntegrationEventTest.php ...

View on GitHub

coderabbitai[bot] created a review on a pull request on JhumanJ/OpnForm
**Actionable comments posted: 45** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (37)</summary><blockquote> <details> <summary>api/tests/Feature/Forms/FormIntegrationEventTest.php ...

View on GitHub

anonnoisy starred JhumanJ/OpnForm
mxmp210 starred JhumanJ/OpnForm
duplaja created a comment on an issue on JhumanJ/OpnForm
Nevermind, my bad. It didn't like me making opnform_storage a bind mount.

View on GitHub

Load more