parent
b0a6a0d417
commit
0bbcde6ff6
@ -0,0 +1,26 @@ |
||||
package main |
||||
|
||||
import ( |
||||
"owl-blogs/infra" |
||||
|
||||
"github.com/spf13/cobra" |
||||
) |
||||
|
||||
func init() { |
||||
rootCmd.AddCommand(resetPasswordCmd) |
||||
|
||||
resetPasswordCmd.Flags().StringVarP(&user, "user", "u", "", "The user name") |
||||
resetPasswordCmd.MarkFlagRequired("user") |
||||
resetPasswordCmd.Flags().StringVarP(&password, "password", "p", "", "The new password") |
||||
resetPasswordCmd.MarkFlagRequired("password") |
||||
} |
||||
|
||||
var resetPasswordCmd = &cobra.Command{ |
||||
Use: "reset-password", |
||||
Short: "Resets the password of an author", |
||||
Long: `Resets the password of an author`, |
||||
Run: func(cmd *cobra.Command, args []string) { |
||||
db := infra.NewSqliteDB(DbPath) |
||||
App(db).AuthorService.Create(user, password) |
||||
}, |
||||
} |
Loading…
Reference in new issue