Matthew Thornton
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # APPEALS-6277: Investigation Into the Reusability of the Existing "Caregiver Appeals" VhaProgramOffice in New Pre-docket Workflow ## Queue Tabs ### The Tabs List Existing tabs for `VhaProgramOffice`: ```ruby= def queue_tabs [ assigned_tasks_tab, in_progress_tasks_tab, ready_for_review_tasks_tab, on_hold_tasks_tab, completed_tasks_tab ] end ``` Below is a chart showing the differences between the existing queue tabs for all current VHA Program Offices with what the Caregiver Support Program has requested. An `X` indicates that the queue it is listed beneath does not wish to have the same tab the other organization has specified. | VhaProgramOffice | CSP | | ------ | ------| | X | unassigned | | assigned | X| | in_progress | in_progress | | ready_for_review | X | | on_hold | X | | completed | completed | | --- | --- | | 5 tabs | 3 tabs | ### Individual Tabs and Their Columns **Unassigned**: This tab does not exist for VHA POs and will need to be created regardless if we utilzie the existing organization or not. **In Progress**: ([link to file](https://github.com/department-of-veterans-affairs/caseflow/blob/87364df79e7fa8112d98265d9cd47b0dcc09ab32/app/models/queue_tabs/vha_program_office_in_progress_tasks_tab.rb#L3)) This tab is mostly already in a state that meets the criteria outlined for the CSP. The one change that will need to take place is which columns are shown on this tab for CSP users versus those from other POs: | Other POs | CSP | | --- | ---| | CASE_DETAILS_LINK | CASE_DETAILS_LINK | | TASK_TYPE | TASK_TYPE | | TASK_OWNER | X | | ISSUE_COUNT | X | | LAST_ACTION | X | | BOARD_INTAKE | X | | X | TASK_ASSIGNED_BY | | X | APPEAL_TYPE | | X | DOCKET_NUMBER | | X | DAYS_WAITING | | X | DOCUMENT_COUNT_READER_LINK | [def description](https://github.com/department-of-veterans-affairs/caseflow/blob/87364df79e7fa8112d98265d9cd47b0dcc09ab32/app/models/queue_tabs/vha_program_office_in_progress_tasks_tab.rb#L14): Currently, the string being utilized is: ```json= {"ORGANIZATIONAL_QUEUE_PAGE_IN_PROGRESS_TASKS_DESCRIPTION": "Cases in progress in a %s team member's queue."} ``` The resultant description for the In Progress tab would then be: `"Cases in progress in a Caregiver Appeals team member's queue."` The requested description is: `"Cases assigned to VHA Caregiver Support Program"` **Completed**: ([link to file](https://github.com/department-of-veterans-affairs/caseflow/blob/87364df79e7fa8112d98265d9cd47b0dcc09ab32/app/models/queue_tabs/vha_program_office_completed_tasks_tab.rb#L3)) | Other POs | CSP | | --- | ---| | CASE_DETAILS_LINK | CASE_DETAILS_LINK | | TASK_TYPE | TASK_TYPE | | TASK_OWNER | X | | ISSUE_COUNT | X | | LAST_ACTION | X | | BOARD_INTAKE | X | | X | TASK_ASSIGNED_BY | | X | APPEAL_TYPE | | X | DOCKET_NUMBER | | X | DAYS_WAITING | | X | DOCUMENT_COUNT_READER_LINK | [def description](https://github.com/department-of-veterans-affairs/caseflow/blob/87364df79e7fa8112d98265d9cd47b0dcc09ab32/app/models/queue_tabs/vha_program_office_completed_tasks_tab.rb#L14): Currently, the string being utilized is: ```json= {"VHA_QUEUE_PAGE_COMPLETE_TASKS_DESCRIPTION": "Cases completed:"} ``` The desired string will read: `Cases completed (last 7 days)` Implementation may be as follows: ```ruby= def description is_caregiver_program ? QUEUE_PAGE_COMPLETE_TASKS_DESCRIPTION : VHA_QUEUE_PAGE_COMPLETE_TASKS_DESCRIPTION end ``` [def tasks](https://github.com/department-of-veterans-affairs/caseflow/blob/87364df79e7fa8112d98265d9cd47b0dcc09ab32/app/models/queue_tabs/vha_program_office_completed_tasks_tab.rb#L24): The task filtering that will need to be in place for the CSP queue must limit completed tasks to those that have been closed only within the last 7 days. Currently, the completed implementation does not account for this. The CSP-specific implementation will need to be: ```ruby def tasks recently_completed_tasks end ``` ## Task(s) Tasks can easily be assigned to any organization that is desired, which increase the perceived feasibility of reusing the existing CSP organization. However, due to how task actions are associated with a task, and the differences that exist between existing VHA actions and requested CSP actions for this task, it adds logically complexity towards allowing both organizations to utilize the same task in different manners. These challenges will be further outlined in the `Task Actions` section. Task actions aside, there is no reason why the existing task cannot be used for both organizations. [VhaDocumentSearchTask.rb](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/app/models/tasks/pre_docket/vha_document_search_task.rb#L7) ```ruby VhaDocumentSearchTask.update!(assigned_to: VhaCamo.singleton) ``` ```ruby VhaDocumentSearchTask.update!(assigned_to: VhaProgramOffice.where(name: "Caregiver Appeals")) ``` ## Task Actions ### Actions available on VHA/CSP task | VHA CAMO | CSP | | ---- | ----| | VHA_ASSIGN_TO_PROGRAM_OFFICE | X | | VHA_SEND_TO_BOARD_INTAKE | X | | X | Mark task as in progress | | X | Docs Ready - Send to Intake for Review | | X | Return to Board Intake | There exists only one overlapping task action between the two organizations. The available task actions will need to be conditionally determined based upon if the organization the ask is being assigned to is either VHA CAMO or the CSP. ### TASK_ACTION.json/task_action_repository.rb **Sending an Appeal Back to BVA Intake**: The task action currently used by VHA CAMO to send an appeal to BVA Intake will be able to be reused ASSUMING that the `VhaDocumentSearchTask` that is assigned to CSP is a direct child of BVA Intake's `PreDocketTask`. ```mermaid graph TD A[RootTask] --> B B(PreDocketTask - BVA Intake) --> |Appeal has VHA Benefit Type and Caregiver Issue| C(VhaDocumentSearchTask - CSP) B(PreDocketTask - BVA Intake) --> | Appeal has VHA Benefit Type and Non-Caregiver Issue | D(VhaDocumentSearchTask - VHA CAMO) ``` This will mean whenever the `VhaDocumentSearchTask` is completed that the `PreDocketTask` will have its status updated to `assigned`. Another assumption is that we want the `VhaDocumentSearchTask`'s status to be `completed`. If we want it to be `cancelled` then this task action being reused becomes far less viable. This will need to trigger a modal to open that will prompt for a reason as to why the appeal is being returned back to BVA Intake. This will be detailed more closely in the Modal section below. The [JSON](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/constants/TASK_ACTIONS.json#L402): ```json= "VHA_SEND_TO_BOARD_INTAKE": { "label": "Send to Board Intake", "value": "modal/vha_send_to_board_intake", "func": "vha_send_to_board_intake" }, ``` The method that is called upon execution of the task action will need some conditionals placed within it based on if the caller is a VHA CAMO or CSP user. The `modal_title` and `redirect_after` values differ between the two orgs. The [Ruby](): ```ruby= def vha_send_to_board_intake(*) { modal_title: COPY::VHA_SEND_TO_BOARD_INTAKE_MODAL_TITLE, type: VhaDocumentSearchTask.name, redirect_after: "/organizations/#{VhaCamo.singleton.url}" } end ``` **Mark task as in progress**: This task action is already wired up for use in [TASK_ACTIONS.json](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/constants/TASK_ACTIONS.json#L407), [task_action_respository.rb](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/app/repositories/task_action_repository.rb#L578), and in [QueueApp.jsx](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/app/queue/QueueApp.jsx#L945). Calling this action and sending up the id of the `VhaDocumentSearchTask` as a query parameter to `TasksController#update` will update its status to `in_progress`. ```json= "VHA_MARK_TASK_IN_PROGRESS": { "label": "Mark task in progress", "value": "modal/mark_task_in_progress", "func": "vha_mark_task_in_progress" }, ``` For the backend call, the `type` value will need to become something along the lines of `task.type` instead of being hardcoded to `type: AssessDocumentationTask.name`. Much to my delight, it appears as all of the copy being referenced in the method matches up with our AC. The [Ruby](): ```ruby= def vha_mark_task_in_progress(task, _user) org = Organization.find(task.assigned_to_id) queue_url = org.url { modal_title: COPY::ORGANIZATION_MARK_TASK_IN_PROGRESS_MODAL_TITLE, modal_body: COPY::ORGANIZATION_MARK_TASK_IN_PROGRESS_MODAL_BODY, message_title: COPY::ORGANIZATION_MARK_TASK_IN_PROGRESS_CONFIRMATION_TITLE, message_detail: COPY::ORGANIZATION_MARK_TASK_IN_PROGRESS_CONFIRMATION_DETAIL, type: AssessDocumentationTask.name, redirect_after: "/organizations/#{queue_url}" } end ``` **Docs Ready - Send to Intake for Review**: We could potentially utilize the same task action that is used to return an appeal to BVA Intake, however the executing of this task action must trigger a modal to appear in the frontend that prompts the user for the location of the located documents. This will be very similar to how it is done for Education Pre-Docket: ```ruby= def emo_send_to_board_intake_for_review(*) { modal_title: COPY::EDU_SEND_TO_BOARD_INTAKE_FOR_REVIEW_MODAL_TITLE, type: EducationDocumentSearchTask.name, redirect_after: "/organizations/#{EducationEmo.singleton.url}", body_optional: true } end ``` In the education pre-docket effort we found it much easier to separate this task action out from its similarly behaved counterpart. I believe that the same will be the case for this feature work as well. ## Modals **Return to BVA Intake**: [Route](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/app/queue/QueueApp.jsx#L1047) | [Component](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/app/queue/components/CompleteTaskModal.jsx#L29) There is logic in place from the education pre-docket effort to prompt the user for a reason why they are returning an appeal to BVA Intake. The logic: ```javascript= emo_return_to_board_intake: { buildSuccessMsg: (appeal) => ({ title: sprintf(COPY.EMO_RETURN_TO_BOARD_INTAKE_CONFIRMATION, appeal.veteranFullName) }), title: () => COPY.EMO_RETURN_TO_BOARD_INTAKE_MODAL_TITLE, getContent: ReturnToBoardIntakeModal, buttonText: COPY.MODAL_RETURN_BUTTON }, ``` The resulting prompt: ```javascript= const ReturnToBoardIntakeModal = ({ props, state, setState }) => { const taskConfiguration = taskActionData(props); return ( <React.Fragment> {taskConfiguration && taskConfiguration.modal_body} {(!taskConfiguration || !taskConfiguration.modal_hide_instructions) && ( <div> <TextareaField label={COPY.EMO_RETURN_TO_BOARD_INTAKE_MODAL_BODY} name="instructions" id="emoReturnToBoardIntakeInstructions" onChange={(value) => setState({ instructions: value })} value={state.instructions} maxlength={ATTORNEY_COMMENTS_MAX_LENGTH} errorMessage={props.highlightInvalid && !validInstructions(state.instructions) ? COPY.EMPTY_INSTRUCTIONS_ERROR : null} /> </div> )} </React.Fragment> ); }; ``` Validation for these fields is already in place. We will need to add an entry in the [validate method](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/app/queue/components/CompleteTaskModal.jsx#L455) to enforce having to select a reason for returning the appeal. It is likely that we only need to parameterize some of the EMO/education-specific items within `ReturnToBoardIntakeModal` to be usable in our effort. **Send to BVA Intake for Review/Docketing**: [Route](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/app/queue/QueueApp.jsx#L1076) | [Component](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/app/queue/components/CompleteTaskModal.jsx#L29) The modal for this action is actually the same as for returning the appeal to BVA Intake. Here is how it is set up for education pre-docket: ```javascript= emo_send_to_board_intake_for_review: { buildSuccessMsg: (appeal) => ({ title: sprintf(COPY.EDU_SEND_TO_BOARD_INTAKE_FOR_REVIEW_CONFIRMATION_PO, appeal.veteranFullName) }), title: () => COPY.VHA_COMPLETE_TASK_LABEL, getContent: ReadyForReviewModal, buttonText: COPY.MODAL_SUBMIT_BUTTON }, ``` We could very similarly add our own section to this dictionary for CSP to have the ability to send an appeal to BVA Intake as ready for review. We will need to have the validation method within this component know to make sure that a CSP user selects a location pertaining to where the located documents exist: ```javascript= validateForm = () => { const { instructions, otherInstructions, radio } = this.state; const modalType = this.props.modalType; let isValid = true; //\\//\\//\\//\\//\\//\\//\\//\\//\\ // THIS IS WHERE IT NEEDS TO GO!! \\ //\\//\\//\\//\\//\\//\\//\\//\\//\\ if (modalType === 'vha_send_to_board_intake' || modalType === 'ready_for_review') { isValid = validInstructions(instructions) && validRadio(radio); } if (modalType === 'emo_return_to_board_intake') { isValid = validInstructions(instructions); } if (modalType === 'emo_send_to_board_intake_for_review' || modalType === 'rpo_send_to_board_intake_for_review') { if (radio === 'other') { isValid = validInstructions(otherInstructions) && validRadio(radio); } else { isValid = validRadio(radio); } } return isValid; } ``` **Set In Progress**: [Route](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/app/queue/QueueApp.jsx#L945) | [Component](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/client/app/queue/components/InProgressTaskModal.jsx#L14) This modal will require little-to-no updates in order for it to operate as needed. # The Verdict ## Organization Class/Queue Tabs In my opinion, due to the large number of differences in queue tabs and queue tab columns between what VHA Program Offices and the Caregiver Support Program require, it would make the most sense to separate the VhaProgramOffice with the name of "Caregiver Appeals" into its own singleton class. The large amount of conditionals needed to make the organization-queue classes meet the requirements of both types of orgs within singular files would be very cumbersome and inextensible. By separating out the organization into its own class, it will provide us an option to easily steer behavior in the pre-docket workflow to differentiate between VhaCamo and CSP: ```ruby= org.is_a?(CaregiverSupportProgram) ``` This will come in handy for allowing `VhaDocumentSearchTask` to be reused by both VhaCamo and the CSP. ## VhaDocumentSearchTask It is very common in Caseflow to have a variety of available actions on a task depending on who it is assigned to. The [InformalHearingPresentationTask](https://github.com/department-of-veterans-affairs/caseflow/blob/6ea754dd3254fee25b75c4ba5fdafb41ba3e66a0/app/models/tasks/informal_hearing_presentation_task.rb#L14) is a great example of this where the actions differ depending on whether the assignee is an org, a user, and/or an admin user. Something very similar can be done for our use case with minimal effort. ## Task Actions The`VHA_MARK_TASK_IN_PROGRESS` task action can easily be repurposed for use by CSP if the task type in its `TaskActionRepository` method is changed from being hardcoded to being the name of the task passed into the method. As for the `RETURN_TO_BVA_INTAKE` and `SEND_TO_BVA_INTAKE` actions, it may be best to go the course of separating these out into their own task actions. This will allow for the [CompleteTaskModal.jsx](https://github.com/department-of-veterans-affairs/caseflow/blob/87364df79e7fa8112d98265d9cd47b0dcc09ab32/client/app/queue/components/CompleteTaskModal.jsx#L29) component to use the unique values that these new methods will provide to display CSP-specific text to that organization's users. The amount of code that these task actions will add to the codebase is minimal. ## Modals We will likely want to utilize the existing modals that are in place, and only make slight modifications to them where necessary. These modal components accept titles, descriptions, and tasks as parameters that allow them to operate in a workflow-agnostic fashion, allowing them to be used to cover the additional scenarios brought about by this epic. The `CompleteTaskModal` component is currently bloated, and it may be that we'd like to instead create a new modal component for our workflow for ease of maintainability.

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully