File tree Expand file tree Collapse file tree 1 file changed +30
-6
lines changed Expand file tree Collapse file tree 1 file changed +30
-6
lines changed Original file line number Diff line number Diff line change @@ -51,20 +51,44 @@ class User implements Contract
51
51
52
52
## Commands
53
53
54
- ### List
54
+ ### Add User
55
55
56
- ` php artisan rollout:list `
56
+ ` php artisan rollout:add-user {feature} {user} `
57
57
58
- ![ ] ( https://cloud.githubusercontent.com/assets/2836589/24476459/4773446c-14a1-11e7-8ea5-132fe747e0ac.png )
58
+ Swap ` {feature} ` with the name of the feature, and ` {user} ` with a unique identifier for the user in your system.
59
59
60
60
### Create
61
61
62
62
` php artisan rollout:create {feature} `
63
63
64
64
Swap ` {feature} ` with the name of the feature you'd like to create a feature flag for.
65
65
66
- ### Add User
66
+ ### Deactivate
67
67
68
- ` php artisan rollout:add-user {feature} {user } `
68
+ ` php artisan rollout:deactivate {feature} `
69
69
70
- Swap ` {feature} ` with the name of the feature, and ` {user} ` with a unique identifier for the user in your system.
70
+ Swap ` {feature} ` with the name of the feature you'd like to deactivate globally. Note this will also reset the user whitelist.
71
+
72
+ ### Delete
73
+
74
+ ` php artisan rollout:delete {feature} `
75
+
76
+ Swap ` {feature} ` with the name of the feature you'd like to permanently delete from rollout.
77
+
78
+ ### Everyone
79
+
80
+ ` php artisan rollout:everyone {feature} `
81
+
82
+ Swap ` {feature} ` with the name of the feature you'd like to rollout to 100% of your user base.
83
+
84
+ ### List
85
+
86
+ ` php artisan rollout:list `
87
+
88
+ ![ ] ( https://cloud.githubusercontent.com/assets/2836589/24476459/4773446c-14a1-11e7-8ea5-132fe747e0ac.png )
89
+
90
+ ### Remove User
91
+
92
+ ` php artisan rollout:remove-user {feature} {user} `
93
+
94
+ Swap ` {feature} ` with the name of the feature, and ` {user} ` with a unique identifier for the user in your system to remove the feature from.
You can’t perform that action at this time.
0 commit comments