Verified Commit 567706fe authored by Rishi Kulshreshtha's avatar Rishi Kulshreshtha
Browse files

Issue #3292907: Fatal error when trying to visit FlushSettingsForm

parent 646112a4
Loading
Loading
Loading
Loading

README.md

0 → 100644
+32 −0
Original line number Diff line number Diff line
## CONTENTS OF THIS FILE

 * Introduction
 * Installation
 * Configuration
 * Maintainers

## INTRODUCTION

This module plays a fun flushing sound when the cache is flushed. Sound is 
configurable in the admin settings under UI.

 * For a full description of the module, visit the project page:
   https://www.drupal.org/project/flush/

 * To submit bug reports and feature suggestions, or to track changes:
   https://www.drupal.org/project/issues/flush

## INSTALLATION

 * Install module using `composer require drupal/flush`
 * Enable the Flush module.

## CONFIGURATION

 * There is a configuration link for this, which you can access at
   admin/config/system/flush-settings.

## MAINTAINERS

Current maintainers:
 * Jack Lampinen - https://www.drupal.org/u/jacklampinen

flush.git/HEAD

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
ref: refs/heads/master

flush.git/config

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
[core]
	repositoryformatversion = 0
	filemode = true
	bare = true
	ignorecase = true
	precomposeunicode = true

flush.git/description

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
Unnamed repository; edit this file 'description' to name the repository.
+0 −15
Original line number Diff line number Diff line
#!/bin/sh
#
# An example hook script to check the commit log message taken by
# applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.  The hook is
# allowed to edit the commit message file.
#
# To enable this hook, rename this file to "applypatch-msg".

. git-sh-setup
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
:
Loading