-
-
Save michaeldv/340715 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @settings and anything in it could be nil or blank at any time | |
def get_backlog_issues(exclude_ids=[]) | |
return [[]] unless @settings.present? && | |
@settings['panes'].present? && | |
@settings['panes']['backlog'].present? && | |
@settings['panes']['backlog']['status'].present? && | |
@settings['panes']['backlog']['limit'].present? | |
# ... | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment