You've already forked woodpecker
							
							
				mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-10-30 23:27:39 +02:00 
			
		
		
		
	Improve cron list (#3947)
This commit is contained in:
		| @@ -35,7 +35,7 @@ func (s storage) CronFind(repo *model.Repo, id int64) (*model.Cron, error) { | ||||
|  | ||||
| func (s storage) CronList(repo *model.Repo, p *model.ListOptions) ([]*model.Cron, error) { | ||||
| 	var crons []*model.Cron | ||||
| 	return crons, s.paginate(p).Where("repo_id = ?", repo.ID).Find(&crons) | ||||
| 	return crons, s.paginate(p).Where("repo_id = ?", repo.ID).OrderBy("name").Find(&crons) | ||||
| } | ||||
|  | ||||
| func (s storage) CronUpdate(_ *model.Repo, cron *model.Cron) error { | ||||
|   | ||||
| @@ -16,12 +16,14 @@ | ||||
|         :key="cron.id" | ||||
|         class="items-center !bg-wp-background-200 !dark:bg-wp-background-100" | ||||
|       > | ||||
|         <span>{{ cron.name }}</span> | ||||
|         <span v-if="cron.next_exec && cron.next_exec > 0" class="ml-auto"> | ||||
|           <!-- eslint-disable-next-line @intlify/vue-i18n/no-raw-text --> | ||||
|           {{ $t('repo.settings.crons.next_exec') }}: {{ date.toLocaleString(new Date(cron.next_exec * 1000)) }} | ||||
|         <span class="grid grid-cols-3 w-full"> | ||||
|           <span>{{ cron.name }}</span> | ||||
|           <span v-if="cron.next_exec && cron.next_exec > 0" class="col-span-2 <md:hidden"> | ||||
|             <!-- eslint-disable-next-line @intlify/vue-i18n/no-raw-text --> | ||||
|             {{ $t('repo.settings.crons.next_exec') }}: {{ date.toLocaleString(new Date(cron.next_exec * 1000)) }} | ||||
|           </span> | ||||
|           <span v-else class="col-span-2 <md:hidden">{{ $t('repo.settings.crons.not_executed_yet') }}</span> | ||||
|         </span> | ||||
|         <span v-else class="ml-auto">{{ $t('repo.settings.crons.not_executed_yet') }}</span> | ||||
|         <IconButton icon="play" class="ml-auto w-8 h-8" :title="$t('repo.settings.crons.run')" @click="runCron(cron)" /> | ||||
|         <IconButton icon="edit" class="w-8 h-8" :title="$t('repo.settings.crons.edit')" @click="selectedCron = cron" /> | ||||
|         <IconButton | ||||
|   | ||||
		Reference in New Issue
	
	Block a user