-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(prompt): stopped filtering vcs-host choices by project visibility
will likely provide another way of filtering in the future, but this approach didnt support all visibility options and was not appropriately flexible for expansion BREAKING CHANGE: vcs-host choices are no longer filtered by project visibility
- Loading branch information
Showing
6 changed files
with
4 additions
and
69 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
import joi from 'joi'; | ||
import {optionsSchemas} from '@form8ion/core'; | ||
|
||
export default joi.object().pattern(/^/, optionsSchemas.form8ionPlugin.keys({ | ||
public: joi.bool(), | ||
private: joi.bool() | ||
})); | ||
export default joi.object().pattern(/^/, optionsSchemas.form8ionPlugin); |
This file contains 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